diff options
| author | Maximilian Albert <maximilian.albert@gmail.com> | 2008-01-19 23:31:25 +0000 |
|---|---|---|
| committer | cilix42 <cilix42@users.sourceforge.net> | 2008-01-19 23:31:25 +0000 |
| commit | 0afd549c4559664e33bab5d20ccdeca2ae39026f (patch) | |
| tree | 55346a8116895e0e54dd967dc7b08a4e8a2a50f5 /src/tools-switch.cpp | |
| parent | Fix bad markup in po/vi.po (diff) | |
| download | inkscape-0afd549c4559664e33bab5d20ccdeca2ae39026f.tar.gz inkscape-0afd549c4559664e33bab5d20ccdeca2ae39026f.zip | |
Make creation of dots via Ctrl+click also possible in pen context; fill dots with current stroke color (and unset stroke); add preferences settings for dot radius and status bar messages; Shift+Ctrl+click varies the radius slightly
(bzr r4563)
Diffstat (limited to 'src/tools-switch.cpp')
| -rw-r--r-- | src/tools-switch.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools-switch.cpp b/src/tools-switch.cpp index e4692d91b..c6251fe5b 100644 --- a/src/tools-switch.cpp +++ b/src/tools-switch.cpp @@ -184,13 +184,13 @@ tools_switch(SPDesktop *dt, int num) dt->set_event_context(SP_TYPE_PENCIL_CONTEXT, tool_names[num]); dt->activate_guides(false); inkscape_eventcontext_set(sp_desktop_event_context(dt)); - dt->tipsMessageContext()->set(Inkscape::NORMAL_MESSAGE, _("<b>Drag</b> to create a freehand line. Start drawing with <b>Shift</b> to append to selected path.")); + dt->tipsMessageContext()->set(Inkscape::NORMAL_MESSAGE, _("<b>Drag</b> to create a freehand line. Start drawing with <b>Shift</b> to append to selected path. <b>Ctrl+click</b> to create single dots.")); break; case TOOLS_FREEHAND_PEN: dt->set_event_context(SP_TYPE_PEN_CONTEXT, tool_names[num]); dt->activate_guides(false); inkscape_eventcontext_set(sp_desktop_event_context(dt)); - dt->tipsMessageContext()->set(Inkscape::NORMAL_MESSAGE, _("<b>Click</b> or <b>click and drag</b> to start a path; with <b>Shift</b> to append to selected path.")); + dt->tipsMessageContext()->set(Inkscape::NORMAL_MESSAGE, _("<b>Click</b> or <b>click and drag</b> to start a path; with <b>Shift</b> to append to selected path. <b>Ctrl+click</b> to create single dots.")); break; case TOOLS_CALLIGRAPHIC: dt->set_event_context(SP_TYPE_DYNA_DRAW_CONTEXT, tool_names[num]); |
