aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/src-desktop/src-cpp/RootDesktopObject.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-01-29 14:19:45 -0500
committerKen Moore <ken@ixsystems.com>2018-01-29 14:19:45 -0500
commit06622b28748bcf07ffe75ac9427e4a00373e99d7 (patch)
treecfcacd852b0d528c1a24ada09adfc128f6925b4a /src-qt5/core/lumina-desktop-unified/src-desktop/src-cpp/RootDesktopObject.h
parentAdd a quick 10-second failover timer to LScreensaver: (diff)
downloadlumina-06622b28748bcf07ffe75ac9427e4a00373e99d7.tar.gz
lumina-06622b28748bcf07ffe75ac9427e4a00373e99d7.tar.bz2
lumina-06622b28748bcf07ffe75ac9427e4a00373e99d7.zip
Some more updates for Lumina 2:
Almost have the transparent windows getting layered properly.
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified/src-desktop/src-cpp/RootDesktopObject.h')
-rw-r--r--src-qt5/core/lumina-desktop-unified/src-desktop/src-cpp/RootDesktopObject.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/src-desktop/src-cpp/RootDesktopObject.h b/src-qt5/core/lumina-desktop-unified/src-desktop/src-cpp/RootDesktopObject.h
index ad0e538b..b1ca6f7e 100644
--- a/src-qt5/core/lumina-desktop-unified/src-desktop/src-cpp/RootDesktopObject.h
+++ b/src-qt5/core/lumina-desktop-unified/src-desktop/src-cpp/RootDesktopObject.h
@@ -47,6 +47,7 @@ private:
QList<ScreenObject*> s_objects;
QList<PanelObject*> panel_objects;
QList<NativeWindowObject*> window_objects;
+ QPointer<NativeWindowObject> last_window_up;
public slots:
void updateScreens(); //rescan/update screen objects
bgstack15