Skip to content

Commit

Permalink
Current version of Psi+ is 1.5.1883
Browse files Browse the repository at this point in the history
It is based on:
* psi: 8d95aabb
* plugins: c5d5359
* psimedia: 478567e
* resources: c35f1e3
  • Loading branch information
tehnick committed May 13, 2024
1 parent df31d8d commit 4f3aacc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions src/contactlistview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,11 @@ void ContactListView::updateContextMenu()
contextMenu_ = createContextMenuFor(item);
addContextMenuActions();

// see https://bugs.kde.org/show_bug.cgi?id=453532
contextMenu_->winId();
contextMenu_->windowHandle()->setTransientParent(window()->windowHandle());
if (qApp->platformName() == QLatin1String("wayland")) {
// see https://bugs.kde.org/show_bug.cgi?id=453532
contextMenu_->winId();
contextMenu_->windowHandle()->setTransientParent(window()->windowHandle());
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/geolocationdlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ GeoLocationDlg::GeoLocationDlg(QList<PsiAccount *> list) : QDialog(nullptr), pa_
if (pa_.isEmpty())
close();
ui_.setupUi(this);
setWindowIcon(IconsetFactory::icon("system/geolocation").icon());
setWindowIcon(IconsetFactory::icon("pep/geolocation").icon());
setModal(false);

connect(ui_.pb_cancel, SIGNAL(clicked()), SLOT(close()));
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.1881 (2024-05-13, 22b8d100)
1.5.1883 (2024-05-13, 8d95aabb)

0 comments on commit 4f3aacc

Please sign in to comment.