From: buliabyak Date: Sun, 1 Apr 2007 22:35:03 +0000 (+0000) Subject: fix 1516323 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=07b67b27097b2e614a315d95407d68408cc639c8;p=inkscape.git fix 1516323 --- diff --git a/src/dialogs/object-attributes.cpp b/src/dialogs/object-attributes.cpp index 34f7e4463..f6369f39a 100644 --- a/src/dialogs/object-attributes.cpp +++ b/src/dialogs/object-attributes.cpp @@ -97,7 +97,7 @@ sp_object_attr_show_dialog ( SPObject *object, attrs[i] = desc[i].attribute; } - title = g_strdup_printf (_("%s attributes"), tag); + title = g_strdup_printf (_("%s Properties"), tag); w = sp_window_new (title, TRUE); g_free (title); diff --git a/src/ui/context-menu.cpp b/src/ui/context-menu.cpp index 71e174fb6..20e4f7483 100644 --- a/src/ui/context-menu.cpp +++ b/src/ui/context-menu.cpp @@ -235,10 +235,6 @@ sp_anchor_menu(SPObject *object, SPDesktop *desktop, GtkMenu *m) gtk_signal_connect(GTK_OBJECT(w), "activate", GTK_SIGNAL_FUNC(sp_anchor_link_properties), item); gtk_widget_show(w); gtk_menu_append(GTK_MENU(m), w); - /* Separator */ - w = gtk_menu_item_new(); - gtk_widget_show(w); - gtk_menu_append(GTK_MENU(m), w); /* Select item */ w = gtk_menu_item_new_with_mnemonic(_("_Follow Link")); gtk_signal_connect(GTK_OBJECT(w), "activate", GTK_SIGNAL_FUNC(sp_anchor_link_follow), item);