diff options
-rw-r--r-- | gtk/src/ghb.ui | 4 | ||||
-rw-r--r-- | gtk/src/main.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gtk/src/ghb.ui b/gtk/src/ghb.ui index 5f9625fff..e232a0b10 100644 --- a/gtk/src/ghb.ui +++ b/gtk/src/ghb.ui @@ -1537,8 +1537,8 @@ This allows a player to initiate playback before downloading the entire file.</p <property name="can_focus">False</property> <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> <property name="stack">SettingsStack</property> - <property name="hexpand">False</property> - <property name="halign">GTK_ALIGN_CENTER</property> + <property name="hexpand">True</property> + <property name="halign">GTK_ALIGN_FILL</property> <property name="margin-left">12</property> <property name="margin-right">12</property> </object> 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); |