We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9da4a74 commit d71c541Copy full SHA for d71c541
src/Exporter.vala
@@ -43,7 +43,7 @@ public class Exporter : Box {
43
_win = win;
44
45
_mb = new MenuButton() {
46
- halign = Align.START,
+ halign = Align.FILL,
47
hexpand = true,
48
icon_name = "pan-down-symbolic",
49
menu_model = new GLib.Menu()
@@ -60,7 +60,9 @@ public class Exporter : Box {
60
});
61
62
var bbox = new Box( Orientation.HORIZONTAL, 5 ) {
63
- hexpand = true
+ hexpand = true,
64
+ margin_start = 5,
65
+ margin_end = 5
66
};
67
bbox.append( _mb );
68
bbox.append( export );
0 commit comments