From: mental Date: Sun, 23 Jul 2006 18:25:42 +0000 (+0000) Subject: Update pattern creation help text to reflect new menu layout. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a43ce49faabda9cb7209f671caea4ea0cf22fe95;p=inkscape.git Update pattern creation help text to reflect new menu layout. --- diff --git a/ChangeLog b/ChangeLog index 82d65dae0..e88f0d647 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2006-07-23 MenTaLguY + + * src/widgets/paint-selector.cpp: + + Update pattern creation help text to reflect new menu layout. We + probably need some way to automatically generate + "menu navigation strings" for a given verb. + 2006-07-23 Michael Wybrow * packaging/osx-app.sh, packaging/macosx/inkscape.ds_store diff --git a/src/widgets/paint-selector.cpp b/src/widgets/paint-selector.cpp index 31c44d9d4..c9f29f3c5 100644 --- a/src/widgets/paint-selector.cpp +++ b/src/widgets/paint-selector.cpp @@ -856,7 +856,7 @@ sp_paint_selector_set_mode_pattern(SPPaintSelector *psel, SPPaintSelectorMode mo { GtkWidget *hb = gtk_hbox_new(FALSE, 0); GtkWidget *l = gtk_label_new(NULL); - gtk_label_set_markup(GTK_LABEL(l), _("Use Edit > Object(s) to Pattern to create a new pattern from selection.")); + gtk_label_set_markup(GTK_LABEL(l), _("Use Object > Pattern > Objects to Pattern to create a new pattern from selection.")); gtk_label_set_line_wrap(GTK_LABEL(l), true); gtk_widget_set_size_request(l, 180, -1); gtk_box_pack_start(GTK_BOX(hb), l, TRUE, TRUE, AUX_BETWEEN_BUTTON_GROUPS);