aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LSession.cpp
diff options
context:
space:
mode:
authorJesse Smith <jessefrgsmith@yahoo.ca>2014-09-15 19:45:53 -0300
committerJesse Smith <jessefrgsmith@yahoo.ca>2014-09-15 19:45:53 -0300
commit7cd91c78c5219a2391a3c4a9a1c2e446989d4c2f (patch)
treec8163ad1f3458dae66f8e0e905fcd7258d8b898c /lumina-desktop/LSession.cpp
parentSelect the first exec entry from a .desktop file rather than the last. (diff)
parentUpdate the Lumina user button a bit: (diff)
downloadlumina-7cd91c78c5219a2391a3c4a9a1c2e446989d4c2f.tar.gz
lumina-7cd91c78c5219a2391a3c4a9a1c2e446989d4c2f.tar.bz2
lumina-7cd91c78c5219a2391a3c4a9a1c2e446989d4c2f.zip
Merge remote-tracking branch 'upstream/master'
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