diff options
| author | John Smith <john.smith7545@yahoo.com> | 2012-10-28 03:08:09 +0000 |
|---|---|---|
| committer | John Smith <john.smith7545@yahoo.com> | 2012-10-28 03:08:09 +0000 |
| commit | 50344eb9b83c7d8935010b9a31f0bc243a7da805 (patch) | |
| tree | 448a487d43d56747a2df39a86965888bc82338e1 /src/widgets | |
| parent | fix build (diff) | |
| download | inkscape-50344eb9b83c7d8935010b9a31f0bc243a7da805.tar.gz inkscape-50344eb9b83c7d8935010b9a31f0bc243a7da805.zip | |
Fix for 1067808 : Focus issues with new gradient (and swatch) manager in Fill&Stroke - Focus fix
(bzr r11842)
Diffstat (limited to 'src/widgets')
| -rw-r--r-- | src/widgets/gradient-selector.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/widgets/gradient-selector.cpp b/src/widgets/gradient-selector.cpp index 0cf1c2c51..2a651544b 100644 --- a/src/widgets/gradient-selector.cpp +++ b/src/widgets/gradient-selector.cpp @@ -374,7 +374,10 @@ bool SPGradientSelector::_checkForSelected(const Gtk::TreePath &path, const Gtk: { treeview->scroll_to_row(path, 0.5); Glib::RefPtr<Gtk::TreeSelection> select = treeview->get_selection(); + bool wasBlocked = blocked; + blocked = true; select->select(iter); + blocked = wasBlocked; found = true; } |
