diff options
| author | su_v <suv-sf@users.sourceforge.net> | 2012-10-29 10:01:26 +0000 |
|---|---|---|
| committer | ~suv <suv-sf@users.sourceforge.net> | 2012-10-29 10:01:26 +0000 |
| commit | 3630eed967e5b7020d1c1fc1b14fcf9819103d46 (patch) | |
| tree | 2ff0fa96e32bb6aec2c208845c81cb9a19c780a9 /src/widgets/gradient-selector.cpp | |
| parent | merge from trunk (r11826) (diff) | |
| parent | Fix for 165865 : Markers - fix Undo history (diff) | |
| download | inkscape-3630eed967e5b7020d1c1fc1b14fcf9819103d46.tar.gz inkscape-3630eed967e5b7020d1c1fc1b14fcf9819103d46.zip | |
merge from trunk (r11850)
(bzr r11668.1.36)
Diffstat (limited to 'src/widgets/gradient-selector.cpp')
| -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; } |
