diff options
author | jstebbins <[email protected]> | 2014-05-15 16:53:47 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-05-15 16:53:47 +0000 |
commit | 4274a3ea62219e35eeafc525bbb84e25bfb63615 (patch) | |
tree | 6fca95365a210ddcfb3d0dbf7b50ed600f068d7c /gtk/src/main.c | |
parent | c2ec2ce8b0f1a79a2204f608f06e7309f2306c0e (diff) |
LinGui: make the StackSwitcher fill the available width
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6195 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/main.c')
-rw-r--r-- | gtk/src/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/src/main.c b/gtk/src/main.c index e180b1986..e7eaf8f6a 100644 --- a/gtk/src/main.c +++ b/gtk/src/main.c @@ -1221,6 +1221,8 @@ main(int argc, char *argv[]) { GtkWidget *widget = link->data; gtk_widget_set_size_request(widget, -1, -1); + gtk_widget_set_hexpand(widget, TRUE); + gtk_widget_set_halign(widget, GTK_ALIGN_FILL); link = link->next; } g_list_free(stack_switcher_children); |