summaryrefslogtreecommitdiff
path: root/src/gui/widgets/popup.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/popup.h')
-rw-r--r--src/gui/widgets/popup.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/gui/widgets/popup.h b/src/gui/widgets/popup.h
index a375a90c7..f39a92ec0 100644
--- a/src/gui/widgets/popup.h
+++ b/src/gui/widgets/popup.h
@@ -172,8 +172,7 @@ class Popup notfinal : public Container,
{ return mVisible; }
virtual void postInit()
- {
- }
+ { mInit = true; }
protected:
int mPadding; /**< Holds the padding of the popup. */
@@ -181,12 +180,12 @@ class Popup notfinal : public Container,
private:
std::string mPopupName; /**< Name of the popup */
+ ImageCollection *mVertexes;
int mMinWidth; /**< Minimum popup width */
int mMinHeight; /**< Minimum popup height */
int mMaxWidth; /**< Maximum popup width */
int mMaxHeight; /**< Maximum popup height */
-
- ImageCollection *mVertexes;
+ bool mInit;
};
#endif // GUI_WIDGETS_POPUP_H