Skip to content

Commit

Permalink
Make lint happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
be1 committed Feb 23, 2024
1 parent b16d8b7 commit 608ca63
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/Prefs.vala
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,15 @@ namespace Agenda {
buttonbox.add (cancel);
buttonbox.add (ok);

var vbox = new Gtk.Box (Gtk.Orientation.VERTICAL, 3);
var vbox = new Gtk.Box (Gtk.Orientation.VERTICAL, 3);
vbox.spacing = 6;
vbox.margin = 6;
vbox.add (font_hbox);
vbox.add (sort_hbox);
vbox.add (buttonbox);

ok.clicked.connect(this.on_ok);
cancel.clicked.connect(this.on_cancel);
ok.clicked.connect (this.on_ok);
cancel.clicked.connect (this.on_cancel);
this.add (vbox);
}

Expand Down
2 changes: 1 addition & 1 deletion src/Window.vala
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ namespace Agenda {
Gtk.MenuButton burger = new Gtk.MenuButton ();
burger.direction = Gtk.ArrowType.NONE;
burger.menu_model = menu;
header.pack_end(burger);
header.pack_end (burger);

// Set up geometry
Gdk.Geometry geo = Gdk.Geometry ();
Expand Down

0 comments on commit 608ca63

Please sign in to comment.