aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LSession.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2014-09-12 13:33:27 -0400
committerKen Moore <ken@pcbsd.org>2014-09-12 13:33:27 -0400
commit4a24ba032416349e297be1644f44486e4a9eea87 (patch)
treeae1b0a7a5c948dbc619e370c7842498c257c1dac /lumina-desktop/LSession.cpp
parentUpdate lumina-config to use the new OS prefix settings. (diff)
downloadlumina-4a24ba032416349e297be1644f44486e4a9eea87.tar.gz
lumina-4a24ba032416349e297be1644f44486e4a9eea87.tar.bz2
lumina-4a24ba032416349e297be1644f44486e4a9eea87.zip
Clean up the usage/detection of the "URGENT" window status, and also move the AppStore/ControlPanel/QtConfig shortcut definitions into the LuminaOS class for use in other OS's.
Diffstat (limited to 'lumina-desktop/LSession.cpp')
-rw-r--r--lumina-desktop/LSession.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lumina-desktop/LSession.cpp b/lumina-desktop/LSession.cpp
index 43a7ce79..7897966b 100644
--- a/lumina-desktop/LSession.cpp
+++ b/lumina-desktop/LSession.cpp
@@ -278,6 +278,7 @@ bool LSession::x11EventFilter(XEvent *event){
|| event->xproperty.atom == XInternAtom(QX11Info::display(),"_NET_WM_NAME",false) \
|| event->xproperty.atom == XInternAtom(QX11Info::display(),"_NET_WM_VISIBLE_NAME",false) \
|| event->xproperty.atom == XInternAtom(QX11Info::display(),"_NET_WM_ICON_NAME",false) \
+ || event->xproperty.atom == XInternAtom(QX11Info::display(),"_NET_WM_STATE",false) \
|| event->xproperty.atom == XInternAtom(QX11Info::display(),"_NET_WM_VISIBLE_ICON_NAME",false) ){
LSession::restoreOverrideCursor(); //restore the mouse cursor back to normal (new window opened?)
emit WindowListEvent();
bgstack15