Skip to content

Commit ac63aaa

Browse files
committed
fix pre-mature show
1 parent 2f84a87 commit ac63aaa

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/Application.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class Harvey : Gtk.Application {
4141
app_window.move (window_x, window_y);
4242
}
4343

44-
app_window.show ();
44+
app_window.show_all ();
4545

4646
var quit_action = new SimpleAction ("quit", null);
4747

src/MainWindow.vala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ public class MainWindow : Gtk.Window {
129129
add (grid);
130130
get_style_context ().add_class ("rounded");
131131
set_titlebar (header_grid);
132-
show_all ();
133132

134133
fg_entry.icon_press.connect ((pos, event) => {
135134
if (pos == Gtk.EntryIconPosition.SECONDARY) {

0 commit comments

Comments
 (0)