summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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);