summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelipe Corr??a da Silva Sanches <juca@members.fsf.org>2007-12-12 01:04:53 +0000
committerjucablues <jucablues@users.sourceforge.net>2007-12-12 01:04:53 +0000
commit2c080a56747c2dd2ca7d2d05c7750fc5c38c1a23 (patch)
tree2ff2b77f0799b9ffcc64a5f0bed6349bcb880a88
parentI have added beveled edges to the connections on the filter-effects (diff)
downloadinkscape-2c080a56747c2dd2ca7d2d05c7750fc5c38c1a23.tar.gz
inkscape-2c080a56747c2dd2ca7d2d05c7750fc5c38c1a23.zip
connected a signal to update the filter primitives list treeview when the filters dialog is resized
(bzr r4214)
-rw-r--r--src/ui/dialog/filter-effects-dialog.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ui/dialog/filter-effects-dialog.cpp b/src/ui/dialog/filter-effects-dialog.cpp
index d1be155be..e3e9304a8 100644
--- a/src/ui/dialog/filter-effects-dialog.cpp
+++ b/src/ui/dialog/filter-effects-dialog.cpp
@@ -1207,6 +1207,8 @@ FilterEffectsDialog::PrimitiveList::PrimitiveList(FilterEffectsDialog& d)
_in_drag(0),
_observer(new SignalObserver)
{
+ d.signal_expose_event().connect(sigc::mem_fun(*this, &PrimitiveList::on_expose_signal));
+
add_events(Gdk::POINTER_MOTION_MASK | Gdk::BUTTON_PRESS_MASK | Gdk::BUTTON_RELEASE_MASK);
signal_expose_event().connect(sigc::mem_fun(*this, &PrimitiveList::on_expose_signal));