aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LSession.h
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-07-10 10:16:40 -0400
committerKen Moore <moorekou@gmail.com>2015-07-10 10:16:40 -0400
commit1902050558bfdb3cbb5ff8fb271dc7c0bfe3b97b (patch)
tree9bbcdeb53a085fc7a1f5cdeb90f9d9285ec445af /lumina-desktop/LSession.h
parentClean up a few last things in lumina-config: (diff)
downloadlumina-1902050558bfdb3cbb5ff8fb271dc7c0bfe3b97b.tar.gz
lumina-1902050558bfdb3cbb5ff8fb271dc7c0bfe3b97b.tar.bz2
lumina-1902050558bfdb3cbb5ff8fb271dc7c0bfe3b97b.zip
Adjust the window check/resize routine a bit more. Now it seems to workmuch better, still have a couple apps which might go past the bottom of the screen a couple pixels, but that might be the app doing some auto-resizing of itself later.
Diffstat (limited to 'lumina-desktop/LSession.h')
-rw-r--r--lumina-desktop/LSession.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lumina-desktop/LSession.h b/lumina-desktop/LSession.h
index 867f4bd9..b7e6de63 100644
--- a/lumina-desktop/LSession.h
+++ b/lumina-desktop/LSession.h
@@ -111,6 +111,7 @@ private:
//Task Manager Variables
QList<WId> RunningApps;
+ QList<WId> checkWin;
QFileInfoList desktopFiles;
void CleanupSession();
@@ -125,6 +126,7 @@ public slots:
private slots:
void watcherChange(QString);
+ void checkWindowGeoms();
//System Tray Functions
void startSystemTray();
bgstack15