2025.01.08 04:57:59

This commit is contained in:
Christian Moser 2025-01-08 04:57:59 +01:00
parent 570e7c5909
commit e4ec86195a
2 changed files with 2 additions and 4 deletions

View File

@ -44,7 +44,7 @@ class GameView(Gtk.ScrolledWindow):
Gtk.ScrolledWindow.__init__(self)
self.__liststore = Gio.ListStore.new(game.Game)
for g in game.GAMES.values():
for g in game.GameManager.get_global().games.values():
pass
self.__liststore.append(g)

View File

@ -25,7 +25,6 @@ from .steam import SteamLibrary
logger=logging.getLogger(__name__)
def cli_main():
logger.debug("Running cli_main()")
return 0
@ -34,9 +33,8 @@ def curses_main():
logger.debug("Running curses_main()")
return 0
def gui_main():
logger.debug("Running gui_main()")
gui._app = Application()
gui._app.run()
return 0
return 0