hide_on_startup is disabled so the window can be show immediately
authorJean-Philippe Orsini <jeanfi@gmail.com>
Fri, 17 Feb 2017 22:56:29 +0000 (23:56 +0100)
committerJean-Philippe Orsini <jeanfi@gmail.com>
Fri, 17 Feb 2017 22:56:29 +0000 (23:56 +0100)
LP #1642034 (Francis Chin)

src/main.c

index 2868142..f6331f1 100644 (file)
@@ -556,7 +556,7 @@ int main(int argc, char **argv)
        if  (ui.config->hide_on_startup)
                g_timeout_add(30000, (GSourceFunc)initial_window_show, &ui);
        else
-               initial_window_show(&ui);
+               ui_window_show(&ui);
 
        /* main loop */
        gtk_main();