mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-29 06:51:10 +00:00
testspinbutton: Orient box orthogonally to Spins
This makes better use of space.
This commit is contained in:
parent
c179d5eb6e
commit
bb16f1a0ff
@ -41,7 +41,7 @@ prepare_window_for_orientation (GtkOrientation orientation)
|
||||
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
||||
g_signal_connect (window, "delete_event", G_CALLBACK (on_delete_event), NULL);
|
||||
|
||||
mainbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 2);
|
||||
mainbox = gtk_box_new (GTK_ORIENTATION_VERTICAL ^ orientation, 2);
|
||||
gtk_container_add (GTK_CONTAINER (window), mainbox);
|
||||
|
||||
for (max = 9; max <= 999999999; max = max * 10 + 9)
|
||||
|
Loading…
Reference in New Issue
Block a user