diff options
| author | Nicholas Bishop <nicholasbishop@gmail.com> | 2008-02-02 18:37:59 +0000 |
|---|---|---|
| committer | nicholasbishop <nicholasbishop@users.sourceforge.net> | 2008-02-02 18:37:59 +0000 |
| commit | c5640146b5b9d8c5256a7bfa36785e8ac413680b (patch) | |
| tree | 5780f4a89f724374c4a3fc38b6a54eb4a1498d54 | |
| parent | Fix for LP #168959 as per John Cliff's 'patch' in the bug tracker (diff) | |
| download | inkscape-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.cpp | 1 |
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); |
