summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2007-04-01 22:35:03 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2007-04-01 22:35:03 +0000
commita5bbc01e140a4609434410b642d00f7ad5ddeece (patch)
tree66ee31ee3c46fd960fc86b1aca59a9e645198b02 /src
parentfix annoying superfluous separator (diff)
downloadinkscape-a5bbc01e140a4609434410b642d00f7ad5ddeece.tar.gz
inkscape-a5bbc01e140a4609434410b642d00f7ad5ddeece.zip
fix 1516323
(bzr r2808)
Diffstat (limited to 'src')
-rw-r--r--src/dialogs/object-attributes.cpp2
-rw-r--r--src/ui/context-menu.cpp4
2 files changed, 1 insertions, 5 deletions
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);