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 282df79 commit 952704bCopy full SHA for 952704b
src/Widgets/SettingsPopover.vala
@@ -101,11 +101,10 @@ public class jorts.SettingsPopover : Gtk.Popover {
101
color_button_slate.set_active ((theme == "SLATE"));
102
103
//TODO: Multiline
104
- var color_button_box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 1) {
105
- accessible_role = Gtk.AccessibleRole.LIST
106
- margin_top = 12;
107
- margin_bottom = 12;
108
- };
+ var color_button_box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 1);
+ color_button_box.accessible_role = Gtk.AccessibleRole.LIST;
+ color_button_box.margin_top = 12;
+ color_button_box.margin_bottom = 12;
109
110
color_button_box.append (color_button_blueberry);
111
color_button_box.append (color_button_mint);
0 commit comments