moved controller to controllers folder

This commit is contained in:
2024-01-11 20:26:06 -06:00
parent 1876ba3fd0
commit 6ed96c426d
4 changed files with 15 additions and 12 deletions

View File

@@ -11,7 +11,7 @@ from gi.repository import Gdk
from gi.repository import GLib
# Application imports
from core.controller import Controller
from core.controllers.base_controller import BaseController
@@ -61,9 +61,9 @@ class Window(Gtk.ApplicationWindow):
if settings_manager.is_debug():
self.set_interactive_debugging(True)
self._controller = Controller(args, unknownargs)
self._controller = BaseController(args, unknownargs)
if not self._controller:
raise ControllerStartException("Controller exited and doesn't exist...")
raise ControllerStartException("BaseController exited and doesn't exist...")
self.add( self._controller.get_base_container() )