summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index f22e39b..2f3063a 100644
--- a/src/main.c
+++ b/src/main.c
@@ -27,6 +27,8 @@
#include <gtk/gtk.h>
+#include "main-window.h"
+
static gchar *opt_profile;
static gboolean opt_private;
static gboolean opt_version;
@@ -71,5 +73,9 @@ main(int argc, char *argv[])
return EXIT_SUCCESS;
}
+ mq_main_window_new();
+
+ gtk_main();
+
return EXIT_SUCCESS;
}