1
0
Fork 0
mirror of synced 2024-06-17 01:54:46 +12:00

Fixed bug in gamelist

This commit is contained in:
Dummerle 2021-04-05 17:45:20 +02:00
parent 1f1ef3e24d
commit f6e53a7e1f

View file

@ -48,6 +48,7 @@ class GameList(QStackedWidget):
self.icon_parent_layout = QVBoxLayout()
self.icon_parent_layout.addWidget(QLabel(self.info_text))
self.icon_layout = FlowLayout()
self.list_layout = QVBoxLayout()
self.list_layout.addWidget(QLabel(self.info_text))
@ -125,6 +126,7 @@ class GameList(QStackedWidget):
self.widgets[game.app_name] = (icon_widget, list_widget)
self.icon_parent_layout.addLayout(self.icon_layout)
self.icon_parent_layout.addStretch(1)
self.list_layout.addStretch(1)
self.icon_widget.setLayout(self.icon_parent_layout)
self.list_widget.setLayout(self.list_layout)