summaryrefslogtreecommitdiffstats
path: root/src/ege-output-action.cpp
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2007-12-04 08:02:08 +0000
committerjoncruz <joncruz@users.sourceforge.net>2007-12-04 08:02:08 +0000
commitd6d4a198ae9d4177329ad093ae6ff4a5e93347fc (patch)
tree44c109c8c33d296b36355590b46a3c940a39e3b6 /src/ege-output-action.cpp
parentnew patterns, readme update (diff)
downloadinkscape-d6d4a198ae9d4177329ad093ae6ff4a5e93347fc.tar.gz
inkscape-d6d4a198ae9d4177329ad093ae6ff4a5e93347fc.zip
Implemented use of "short_label" for toolbar items.
Fixes bug #168826. (bzr r4167)
Diffstat (limited to 'src/ege-output-action.cpp')
-rw-r--r--src/ege-output-action.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ege-output-action.cpp b/src/ege-output-action.cpp
index 1b014bb65..62878eb16 100644
--- a/src/ege-output-action.cpp
+++ b/src/ege-output-action.cpp
@@ -200,7 +200,7 @@ GtkWidget* create_tool_item( GtkAction* action )
memset( &value, 0, sizeof(value) );
g_value_init( &value, G_TYPE_STRING );
- g_object_get_property( G_OBJECT(action), "label", &value );
+ g_object_get_property( G_OBJECT(action), "short_label", &value );
const gchar* sss = g_value_get_string( &value );
item = GTK_WIDGET( gtk_tool_item_new() );