From affd142d33249cf236a9dd5db1539b4af513410e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 26 Mar 2012 09:15:18 +0200 Subject: [PATCH] playback-test: Some minor grid layout improvements --- tests/examples/playback/playback-test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/examples/playback/playback-test.c b/tests/examples/playback/playback-test.c index a993c72a53..720e54ee9f 100644 --- a/tests/examples/playback/playback-test.c +++ b/tests/examples/playback/playback-test.c @@ -2984,9 +2984,9 @@ create_ui (PlaybackApp * app) gtk_grid_attach (GTK_GRID (boxes), app->soft_colorbalance_checkbox, 4, 1, 1, 1); - gtk_grid_attach (GTK_GRID (boxes), app->mute_checkbox, 7, 0, 2, 1); - gtk_grid_attach (GTK_GRID (boxes), volume_label, 6, 1, 1, 1); - gtk_grid_attach (GTK_GRID (boxes), app->volume_spinbutton, 7, 1, 1, 1); + gtk_grid_attach (GTK_GRID (boxes), app->mute_checkbox, 6, 0, 1, 1); + gtk_grid_attach (GTK_GRID (boxes), volume_label, 5, 1, 1, 1); + gtk_grid_attach (GTK_GRID (boxes), app->volume_spinbutton, 6, 1, 1, 1); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (app->video_checkbox), TRUE); -- 2.34.1