Changed import logic for app
This commit is contained in:
		| @@ -14,7 +14,7 @@ gi.require_version('Gtk', '3.0') | ||||
| from gi.repository import Gtk | ||||
|  | ||||
| # Application imports | ||||
| from main import Main | ||||
| from app import Application | ||||
|  | ||||
|  | ||||
| if __name__ == "__main__": | ||||
| @@ -33,7 +33,7 @@ if __name__ == "__main__": | ||||
|         # Read arguments (If any...) | ||||
|         args, unknownargs = parser.parse_known_args() | ||||
|  | ||||
|         Main(args, unknownargs) | ||||
|         Application(args, unknownargs) | ||||
|         Gtk.main() | ||||
|     except Exception as e: | ||||
|         traceback.print_exc() | ||||
|   | ||||
| @@ -11,7 +11,7 @@ from __builtins__ import EventSystem | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| class Main(EventSystem): | ||||
| class Application(EventSystem): | ||||
|     ''' Create Settings and Controller classes. Bind signal to Builder. Inherit from Builtins to bind global methods and classes.''' | ||||
| 
 | ||||
|     def __init__(self, args, unknownargs): | ||||
		Reference in New Issue
	
	Block a user