summaryrefslogtreecommitdiffstats
path: root/src/widgets/toolbox.cpp
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2006-06-05 14:04:26 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2006-06-05 14:04:26 +0000
commit5e003e7592fccc247e9519838c1404d32c5d3e61 (patch)
tree8559e2225d948f13ff854e2f42775b2f6cbe1d47 /src/widgets/toolbox.cpp
parentAllow "new layer" action when no layer selected (diff)
downloadinkscape-5e003e7592fccc247e9519838c1404d32c5d3e61.tar.gz
inkscape-5e003e7592fccc247e9519838c1404d32c5d3e61.zip
swap tooltips
(bzr r1160)
Diffstat (limited to 'src/widgets/toolbox.cpp')
-rw-r--r--src/widgets/toolbox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp
index 5bdf60ce5..d0f070886 100644
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
@@ -3470,7 +3470,7 @@ sp_text_toolbox_new (SPDesktop *desktop)
gtk_box_pack_start (GTK_BOX (row), rbutton, FALSE, FALSE, 0);
g_object_set_data (G_OBJECT (tbl), "text-start", rbutton);
g_signal_connect (G_OBJECT (rbutton), "toggled", G_CALLBACK (sp_text_toolbox_anchoring_toggled), gpointer(0));
- gtk_tooltips_set_tip(tt, rbutton, _("Align right"), NULL);
+ gtk_tooltips_set_tip(tt, rbutton, _("Align left"), NULL);
// center
rbutton = gtk_radio_button_new (gtk_radio_button_group (GTK_RADIO_BUTTON (group)));
@@ -3492,7 +3492,7 @@ sp_text_toolbox_new (SPDesktop *desktop)
gtk_box_pack_start (GTK_BOX (row), rbutton, FALSE, FALSE, 0);
g_object_set_data (G_OBJECT (tbl), "text-end", rbutton);
g_signal_connect (G_OBJECT (rbutton), "toggled", G_CALLBACK (sp_text_toolbox_anchoring_toggled), gpointer(2));
- gtk_tooltips_set_tip(tt, rbutton, _("Align left"), NULL);
+ gtk_tooltips_set_tip(tt, rbutton, _("Align right"), NULL);
// fill
rbutton = gtk_radio_button_new (gtk_radio_button_group (GTK_RADIO_BUTTON (group)));