Closed Wolfmyths closed 1 year ago
In a future update I would like to combine all the list widgets into one list. Showing installed mods and their data all in one item on a list.
Kinda like this (But with actual UI elements in the final product)
Mod Name | Directory | Enabled
This would streamline the way mods are displayed for the user.
Maybe the enabled variable could be a checkmark?
We may need to change QListWidget into a QListView for something like this to work https://doc.qt.io/qtforpython-5/PySide2/QtWidgets/QListView.html
Upon further research it seems like a QTableWidget is just what we need
In a future update I would like to combine all the list widgets into one list. Showing installed mods and their data all in one item on a list.
Kinda like this (But with actual UI elements in the final product)
Mod Name | Directory | Enabled
This would streamline the way mods are displayed for the user.
Maybe the enabled variable could be a checkmark?
We may need to change QListWidget into a QListView for something like this to work https://doc.qt.io/qtforpython-5/PySide2/QtWidgets/QListView.html
Update:
Upon further research it seems like a QTableWidget is just what we need