Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/prefs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ function settings_dialog_view(): [AppWidgets, Gtk.Container] {
let grid = new Gtk.Grid({
column_spacing: 12,
row_spacing: 12,
margin: 10
});

let win_label = new Gtk.Label({
Expand All @@ -88,11 +89,11 @@ function settings_dialog_view(): [AppWidgets, Gtk.Container] {
xalign: 0.0
});

let window_titles = new Gtk.Switch({ halign: Gtk.Align.START });
let window_titles = new Gtk.Switch({ halign: Gtk.Align.END });

let snap_to_grid = new Gtk.Switch({ halign: Gtk.Align.START });
let snap_to_grid = new Gtk.Switch({ halign: Gtk.Align.END });

let smart_gaps = new Gtk.Switch({ halign: Gtk.Align.START });
let smart_gaps = new Gtk.Switch({ halign: Gtk.Align.END });

grid.attach(win_label, 0, 0, 1, 1);
grid.attach(window_titles, 1, 0, 1, 1);
Expand Down