summaryrefslogtreecommitdiffstats
path: root/scene/gui/popup.h
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2018-09-07 13:49:10 -0300
committerJuan Linietsky <reduzio@gmail.com>2018-09-07 13:49:10 -0300
commit6ce9951d9e487cfacec40ea27e2a2be241d9da77 (patch)
tree5233d2217967b2e6b34b2b55a4e1f99d59964143 /scene/gui/popup.h
parentf1e5b7cf42010db1251ecef34695367c125f02e1 (diff)
downloadredot-engine-6ce9951d9e487cfacec40ea27e2a2be241d9da77.tar.gz
Many fixes to gradient editor, which was pretty broken. Closes #19308
Diffstat (limited to 'scene/gui/popup.h')
-rw-r--r--scene/gui/popup.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/gui/popup.h b/scene/gui/popup.h
index 550e803578..5b1ef7d6ca 100644
--- a/scene/gui/popup.h
+++ b/scene/gui/popup.h
@@ -77,10 +77,12 @@ class PopupPanel : public Popup {
GDCLASS(PopupPanel, Popup);
protected:
+ void _update_child_rects();
void _notification(int p_what);
public:
void set_child_rect(Control *p_child);
+ virtual Size2 get_minimum_size() const;
PopupPanel();
};