diff --git a/debian/changelog b/debian/changelog index 2c5f23c..64fa31d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +lubuntu-default-settings (24.04.11) noble; urgency=medium + + * Do not show an actual popup, just the notification for the snap monitor. + + -- Simon Quigley Wed, 17 Apr 2024 22:27:23 -0500 + lubuntu-default-settings (24.04.10) noble; urgency=medium * Do not show hibernate option in the menu. (LP: #1902497) diff --git a/snap-installation-monitor/main.cpp b/snap-installation-monitor/main.cpp index 56c9513..9b3d5ef 100644 --- a/snap-installation-monitor/main.cpp +++ b/snap-installation-monitor/main.cpp @@ -14,7 +14,6 @@ #include #include #include -#include int main(int argc, char *argv[]) { QApplication app(argc, argv); @@ -67,13 +66,6 @@ int main(int argc, char *argv[]) { QVariant newSubState = unit.property("SubState"); if (newState.toString() == "active" && newSubState.toString() == "exited") { trayIcon.hide(); - QMessageBox messageBox; - messageBox.setIcon(QMessageBox::Information); - messageBox.setText("Background snap installation is complete."); - messageBox.setWindowTitle("Installation Complete"); - messageBox.setStandardButtons(QMessageBox::Ok); - messageBox.exec(); - QApplication::quit(); } });