diff --git a/invesalius/invesalius.py b/invesalius/invesalius.py index 0ac221a..6029941 100755 --- a/invesalius/invesalius.py +++ b/invesalius/invesalius.py @@ -166,7 +166,6 @@ class SplashScreen(wx.SplashScreen): wx.Yield() wx.CallLater(200,self.Startup) - def Startup(self): # Importing takes sometime, therefore it will be done # while splash is being shown @@ -178,8 +177,7 @@ class SplashScreen(wx.SplashScreen): self.control = Controller(self.main) self.fc = wx.FutureCall(1, self.ShowMain) - - + parse_comand_line() def OnClose(self, evt): # Make sure the default handler runs too so this window gets @@ -203,7 +201,6 @@ class SplashScreen(wx.SplashScreen): # ------------------------------------------------------------------ - def parse_comand_line(): """ Handle command line arguments. @@ -262,7 +259,6 @@ def main(): Initialize InVesalius GUI """ application = InVesalius(0) - parse_comand_line() application.MainLoop() if __name__ == '__main__': -- libgit2 0.21.2