summaryrefslogtreecommitdiffstats
path: root/src/widgets/spray-toolbar.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2015-11-07 23:18:24 +0000
committerJabiertxof <jtx@jtx.marker.es>2015-11-07 23:18:24 +0000
commit26783ada6dd88c1f2df732707628bae6a4d68e42 (patch)
treec8b4302f6b365f6f4b57fccd1e5ce8f7100f3f39 /src/widgets/spray-toolbar.cpp
parentFix for scale bug pointed by Mc- (diff)
downloadinkscape-26783ada6dd88c1f2df732707628bae6a4d68e42.tar.gz
inkscape-26783ada6dd88c1f2df732707628bae6a4d68e42.zip
Fixes from review form Mc-
(bzr r14422.1.46)
Diffstat (limited to 'src/widgets/spray-toolbar.cpp')
-rw-r--r--src/widgets/spray-toolbar.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/widgets/spray-toolbar.cpp b/src/widgets/spray-toolbar.cpp
index cfd3c6332..5e0d81964 100644
--- a/src/widgets/spray-toolbar.cpp
+++ b/src/widgets/spray-toolbar.cpp
@@ -424,8 +424,8 @@ void sp_spray_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions, GObj
/* Picker */
{
InkToggleAction* act = ink_toggle_action_new( "SprayPickColorAction",
- _("Pick down. You can use trace clones dialog for avanced effects. In clone mode original fill or stroke colors must be unset"),
- _("Pick down. You can use trace clones dialog for avanced effects. In clone mode original fill or stroke colors must be unset"),
+ _("Pick color from the drawing. You can use clonetiler trace dialog for avanced effects. In clone mode original fill or stroke colors must be unset."),
+ _("Pick color from the drawing. You can use clonetiler trace dialog for avanced effects. In clone mode original fill or stroke colors must be unset."),
INKSCAPE_ICON("color-picker"),
secondarySize );
gtk_toggle_action_set_active( GTK_TOGGLE_ACTION(act), prefs->getBool("/tools/spray/picker", false) );
@@ -495,8 +495,6 @@ void sp_spray_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions, GObj
secondarySize );
gtk_toggle_action_set_active( GTK_TOGGLE_ACTION(act), prefs->getBool("/tools/spray/nooverlap", false) );
g_object_set_data( holder, "nooverlap", act );
- //g_object_set_data (context_object, "holder", holder);
- //g_object_set_data (context_object, "desktop", desktop);
g_signal_connect_after( G_OBJECT(act), "toggled", G_CALLBACK(sp_toggle_nooverlap), holder) ;
gtk_action_group_add_action( mainActions, GTK_ACTION(act) );
}