https://bugs.kde.org/show_bug.cgi?id=389694

Nate Graham <pointedst...@zoho.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
     Ever confirmed|0                           |1
             Status|UNCONFIRMED                 |CONFIRMED

--- Comment #2 from Nate Graham <pointedst...@zoho.com> ---
It looks like Spectacle tries to handle this by connecting the allDone signal
(which is emitted once the notification goes away) to &Application::quit:

QObject::connect(&core, &SpectacleCore::allDone, qApp, &QApplication::quit);

But that doesn't actually seem to work. The following trivial diff fixes it for
me:

-    QObject::connect(&core, &SpectacleCore::allDone, qApp,
&QApplication::quit);
+    QObject::connect(&core, &SpectacleCore::allDone, QApplication::quit);

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to