diff options
author | Ken Moore <ken@ixsystems.com> | 2016-11-03 13:55:36 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2016-11-03 13:55:36 -0400 |
commit | 43358bcfd3f815d6f124c70d330a3128aeff9c08 (patch) | |
tree | 8ec9a3bdb5093754ce5c04b7062abd02788f17c7 /src-qt5/core/libLumina/LuminaUtils.h | |
parent | Add the new Qt5 theme engine setting to lumina-config. (diff) | |
download | lumina-43358bcfd3f815d6f124c70d330a3128aeff9c08.tar.gz lumina-43358bcfd3f815d6f124c70d330a3128aeff9c08.tar.bz2 lumina-43358bcfd3f815d6f124c70d330a3128aeff9c08.zip |
Convert the ResizeMenu class into it's own files:
1) Add a new .pri for loading just that class (works stand-alone)
2) Setup the lumina-desktop to use the new build framework for including that class.
Diffstat (limited to 'src-qt5/core/libLumina/LuminaUtils.h')
-rw-r--r-- | src-qt5/core/libLumina/LuminaUtils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/core/libLumina/LuminaUtils.h b/src-qt5/core/libLumina/LuminaUtils.h index e07363ca..4a0a19af 100644 --- a/src-qt5/core/libLumina/LuminaUtils.h +++ b/src-qt5/core/libLumina/LuminaUtils.h @@ -99,7 +99,7 @@ public: //Special subclass for a menu which the user can grab the edges and resize as necessary // Note: Make sure that you don't set 0pixel contents margins on this menu // - it needs at least 1 pixel margins for the user to be able to grab it -class ResizeMenu : public QMenu{ +/*class ResizeMenu : public QMenu{ Q_OBJECT public: ResizeMenu(QWidget *parent = 0); @@ -126,6 +126,6 @@ protected: signals: void MenuResized(QSize); //Emitted when the menu is manually resized by the user -}; +};*/ #endif |