aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/LPanel.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-05-31 12:28:35 -0400
committerKen Moore <ken@ixsystems.com>2017-05-31 12:28:35 -0400
commitb28765cf26c4ad0570b7d9cc7d277fbc4ad42222 (patch)
treeab344eba78f30159cee42ce480b6c07a1630c88d /src-qt5/core/lumina-desktop/LPanel.h
parentMerge branch 'master' of github.com:trueos/lumina (diff)
downloadlumina-b28765cf26c4ad0570b7d9cc7d277fbc4ad42222.tar.gz
lumina-b28765cf26c4ad0570b7d9cc7d277fbc4ad42222.tar.bz2
lumina-b28765cf26c4ad0570b7d9cc7d277fbc4ad42222.zip
Fix up the size limitations on the clock plugin for the panel
Diffstat (limited to 'src-qt5/core/lumina-desktop/LPanel.h')
-rw-r--r--src-qt5/core/lumina-desktop/LPanel.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-desktop/LPanel.h b/src-qt5/core/lumina-desktop/LPanel.h
index bcea8eaf..58e315b8 100644
--- a/src-qt5/core/lumina-desktop/LPanel.h
+++ b/src-qt5/core/lumina-desktop/LPanel.h
@@ -42,6 +42,7 @@ private:
int panelnum;
int viswidth, fullwidth;
QList<LPPlugin*> PLUGINS;
+ QRect desiredGeom;
int Screen(); //Turn the screenID into the appropriate number
bgstack15