summaryrefslogtreecommitdiffstats
path: root/src/libs/gui/NodeModule.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-10-05 19:01:15 +0000
committerDavid Robillard <d@drobilla.net>2007-10-05 19:01:15 +0000
commit9d8f4248b0686b165c6ad0a4f6d653f4bf9cae3b (patch)
tree18f1e16855db66632b8c9a899314d44af5d1362b /src/libs/gui/NodeModule.hpp
parent34fd359a15273b32cb89f540802f56f7b4dabd0b (diff)
downloadingen-9d8f4248b0686b165c6ad0a4f6d653f4bf9cae3b.tar.gz
ingen-9d8f4248b0686b165c6ad0a4f6d653f4bf9cae3b.tar.bz2
ingen-9d8f4248b0686b165c6ad0a4f6d653f4bf9cae3b.zip
Fix embedded LV2 GUI resizing.
git-svn-id: http://svn.drobilla.net/lad/ingen@826 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/gui/NodeModule.hpp')
-rw-r--r--src/libs/gui/NodeModule.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libs/gui/NodeModule.hpp b/src/libs/gui/NodeModule.hpp
index 14be9dee..cf4bff9e 100644
--- a/src/libs/gui/NodeModule.hpp
+++ b/src/libs/gui/NodeModule.hpp
@@ -80,7 +80,7 @@ protected:
void control_change(uint32_t index, float control);
void embed_gui(bool embed);
- void gui_size_request(Gtk::Requisition* req);
+ void gui_size_request(Gtk::Requisition* req, bool force);
void initialise_gui_values();
void create_menu();
@@ -90,6 +90,7 @@ protected:
SLV2UIInstance _slv2_ui;
Gtk::Widget* _gui;
Gnome::Canvas::Widget* _gui_item;
+ Gtk::Container* _gui_container;
int _last_gui_request_width;
int _last_gui_request_height;
};