diff options
Diffstat (limited to 'src/frontend/gui')
-rwxr-xr-x | src/frontend/gui/sisyphus-gui.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py index 71b848f..b13b11b 100755 --- a/src/frontend/gui/sisyphus-gui.py +++ b/src/frontend/gui/sisyphus-gui.py @@ -59,6 +59,7 @@ class Sisyphus(QtWidgets.QMainWindow): '''%searchTerm) rows = cursor.fetchall() model = QtGui.QStandardItemModel(len(rows), 5) + model.setHorizontalHeaderLabels(['Category', 'Name', 'Available Version', 'Installed Version', 'Description']) for row in rows: indx = rows.index(row) for column in range(0, 5): |