From: nicholasbishop Date: Sat, 2 Feb 2008 18:37:59 +0000 (+0000) Subject: Fix dragging a connection in the filter effects dialog into the primitive type column... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=3d63c4ba9aeae11ce2f4930f14b889e586904c10;p=inkscape.git 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 --- 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);