summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorchr <chr>2017-05-23 19:48:26 +0000
committerchr <chr>2017-05-23 19:48:26 +0000
commit7c3f279bbfbd14530476de89ad9725d32ed28fcf (patch)
treef272f7f7767d261c6e838cf6ec1e03c1b7d070f3 /src
parentselection chemistry: implement z-stack order (diff)
downloadinkscape-7c3f279bbfbd14530476de89ad9725d32ed28fcf.tar.gz
inkscape-7c3f279bbfbd14530476de89ad9725d32ed28fcf.zip
object panel: search function blocks too many keystrokes
use ctrl+f to use search Issue: select object in the object panel, focus stays on that widget. Press "3" (zoom to object) used to open the search function. (bzr r15698.1.8)
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/objects.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ui/dialog/objects.cpp b/src/ui/dialog/objects.cpp
index 55a944afb..003821796 100644
--- a/src/ui/dialog/objects.cpp
+++ b/src/ui/dialog/objects.cpp
@@ -1744,6 +1744,8 @@ ObjectsPanel::ObjectsPanel() :
//Set the expander and search columns
_tree.set_expander_column( *_tree.get_column(nameColNum) );
_tree.set_search_column(_model->_colLabel);
+ // use ctrl+f to start search
+ _tree.set_enable_search(false);
//Set up the tree selection
_tree.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);