Skip to content

Commit

Permalink
Plug: add margin to stack
Browse files Browse the repository at this point in the history
  • Loading branch information
danirabbit committed Jul 12, 2024
1 parent dd021d5 commit 78f556b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Plug.vala
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ public class Sound.Plug : Switchboard.Plug {

stack = new Gtk.Stack () {
hexpand = true,
vexpand = true
vexpand = true,
margin_start = 12,
margin_end = 12,
margin_bottom = 12
};
stack.add_titled (output_panel, "output", _("Output"));
stack.add_titled (input_panel, "input", _("Input"));
Expand Down

0 comments on commit 78f556b

Please sign in to comment.