diff options
| author | Maximilian Albert <maximilian.albert@gmail.com> | 2008-01-11 13:22:46 +0000 |
|---|---|---|
| committer | cilix42 <cilix42@users.sourceforge.net> | 2008-01-11 13:22:46 +0000 |
| commit | 50d914529e56d47f765685d738e537cf41601894 (patch) | |
| tree | d6077252931ff2b110aab7df794a7b0d84acc9b9 /src/dyna-draw-context.cpp | |
| parent | remove the struts (diff) | |
| download | inkscape-50d914529e56d47f765685d738e537cf41601894.tar.gz inkscape-50d914529e56d47f765685d738e537cf41601894.zip | |
Add missing selection cue option to preferences for tweak, calligraphy, and paint bucket tools
(bzr r4457)
Diffstat (limited to 'src/dyna-draw-context.cpp')
| -rw-r--r-- | src/dyna-draw-context.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/dyna-draw-context.cpp b/src/dyna-draw-context.cpp index 849e97c97..7a229883e 100644 --- a/src/dyna-draw-context.cpp +++ b/src/dyna-draw-context.cpp @@ -45,6 +45,7 @@ #include "desktop-affine.h" #include "desktop-style.h" #include "message-context.h" +#include "prefs-utils.h" #include "pixmaps/cursor-calligraphy.xpm" #include "libnr/n-art-bpath.h" #include "libnr/nr-path.h" @@ -294,6 +295,10 @@ sp_dyna_draw_context_setup(SPEventContext *ec) ddc->is_drawing = false; ddc->_message_context = new Inkscape::MessageContext((ec->desktop)->messageStack()); + + if (prefs_get_int_attribute("tools.calligraphic", "selcue", 0) != 0) { + ec->enableSelectionCue(); + } } static void |
