mirror of
https://github.com/c9moser/sgbackup.git
synced 2026-01-19 19:40:13 +00:00
2025.01.08 04:57:59
This commit is contained in:
parent
570e7c5909
commit
e4ec86195a
@ -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)
|
||||
|
||||
|
||||
@ -25,7 +25,6 @@ from .steam import SteamLibrary
|
||||
|
||||
logger=logging.getLogger(__name__)
|
||||
|
||||
|
||||
def cli_main():
|
||||
logger.debug("Running cli_main()")
|
||||
return 0
|
||||
@ -34,7 +33,6 @@ def curses_main():
|
||||
logger.debug("Running curses_main()")
|
||||
return 0
|
||||
|
||||
|
||||
def gui_main():
|
||||
logger.debug("Running gui_main()")
|
||||
gui._app = Application()
|
||||
|
||||
Loading…
Reference in New Issue
Block a user