@@ -32,7 +32,7 @@ public class Planify : Adw.Application {
3232 }
3333 }
3434
35- private static bool run_in_background = false ;
35+ // private static bool run_in_background = false;
3636 private static bool version = false ;
3737 private static bool clear_database = false ;
3838 private static string lang = " " ;
@@ -42,7 +42,7 @@ public class Planify : Adw.Application {
4242 private const OptionEntry [] OPTIONS = {
4343 { " version" , ' v' , 0 , OptionArg . NONE , ref version, " Display version number" , null },
4444 { " reset" , ' r' , 0 , OptionArg . NONE , ref clear_database, " Reset Planify" , null },
45- { " background" , ' b' , 0 , OptionArg . NONE , out run_in_background, " Run the Application in background" , null },
45+ // { "background", 'b', 0, OptionArg.NONE, out run_in_background, "Run the Application in background", null },
4646 { " lang" , ' l' , 0 , OptionArg . STRING , ref lang, " Open Planify in a specific language" , " LANG" },
4747 { null }
4848 };
@@ -86,9 +86,7 @@ public class Planify : Adw.Application {
8686 main_window. maximize ();
8787 }
8888
89- if (! run_in_background) {
90- main_window. show ();
91- }
89+ main_window. show ();
9290
9391 Services . Settings . get_default (). settings. bind (" window-maximized" , main_window, " maximized" , SettingsBindFlags . SET );
9492
0 commit comments