summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicholas Bishop <nicholasbishop@gmail.com>2008-02-02 18:37:59 +0000
committernicholasbishop <nicholasbishop@users.sourceforge.net>2008-02-02 18:37:59 +0000
commitc5640146b5b9d8c5256a7bfa36785e8ac413680b (patch)
tree5780f4a89f724374c4a3fc38b6a54eb4a1498d54
parentFix for LP #168959 as per John Cliff's 'patch' in the bug tracker (diff)
downloadinkscape-c5640146b5b9d8c5256a7bfa36785e8ac413680b.tar.gz
inkscape-c5640146b5b9d8c5256a7bfa36785e8ac413680b.zip
Fix dragging a connection in the filter effects dialog into the primitive type column. Was incorrectly causing one of the standard sources to be selected.
Fixes bug #168790 (bzr r4638)
-rw-r--r--src/ui/dialog/filter-effects-dialog.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui/dialog/filter-effects-dialog.cpp b/src/ui/dialog/filter-effects-dialog.cpp
index b3dd1a7d0..9c10de593 100644
--- a/src/ui/dialog/filter-effects-dialog.cpp
+++ b/src/ui/dialog/filter-effects-dialog.cpp
@@ -1812,6 +1812,7 @@ bool FilterEffectsDialog::PrimitiveList::on_button_release_event(GdkEventButton*
Glib::ustring result;
Gtk::TreeIter target_iter = _model->get_iter(path);
target = (*target_iter)[_columns.primitive];
+ col = get_column(1);
Gdk::Rectangle rct;
get_cell_area(path, *col, rct);