diff options
Diffstat (limited to 'src/ege-output-action.cpp')
| -rw-r--r-- | src/ege-output-action.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ege-output-action.cpp b/src/ege-output-action.cpp index c1a5be694..1b356c55d 100644 --- a/src/ege-output-action.cpp +++ b/src/ege-output-action.cpp @@ -193,7 +193,12 @@ GtkWidget* create_tool_item( GtkAction* action ) if ( IS_EGE_OUTPUT_ACTION(action) ) { GValue value; +#if GTK_CHECK_VERSION(3,0,0) + GtkWidget* hb = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 5); + gtk_box_set_homogeneous(GTK_BOX(hb), FALSE); +#else GtkWidget* hb = gtk_hbox_new( FALSE, 5 ); +#endif GtkWidget* lbl = 0; memset( &value, 0, sizeof(value) ); |
