mi-app: use the newer gtk api with orientation
This commit is contained in:
parent
d9fff12865
commit
2a322ab168
@ -42,13 +42,13 @@ public class MediaInfo.App : Window
|
|||||||
}
|
}
|
||||||
destroy.connect (Gtk.main_quit);
|
destroy.connect (Gtk.main_quit);
|
||||||
|
|
||||||
VBox vbox = new VBox( false, 0);
|
Box vbox = new Box (Gtk.Orientation.VERTICAL, 0);
|
||||||
add (vbox);
|
add (vbox);
|
||||||
|
|
||||||
// add a menubar
|
// add a menubar
|
||||||
vbox.pack_start (create_menu (), false, false, 0);
|
vbox.pack_start (create_menu (), false, false, 0);
|
||||||
|
|
||||||
HPaned paned = new HPaned ();
|
Paned paned = new Paned (Gtk.Orientation.HORIZONTAL);
|
||||||
paned.set_border_width (0);
|
paned.set_border_width (0);
|
||||||
vbox.pack_start (paned, true, true, 3);
|
vbox.pack_start (paned, true, true, 3);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user