Made column hidden by default

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
Trial97
2023-11-22 19:23:24 +02:00
parent 140a55810d
commit 85b4e1f24f
5 changed files with 8 additions and 0 deletions

View File

@ -203,6 +203,7 @@ class ResourceFolderModel : public QAbstractListModel {
QStringList m_column_names_translated = { tr("Enable"), tr("Name"), tr("Last Modified") };
QList<QHeaderView::ResizeMode> m_column_resize_modes = { QHeaderView::Interactive, QHeaderView::Stretch, QHeaderView::Interactive };
QList<bool> m_columnsHideable = { false, false, true };
QList<bool> m_columnsHiddenByDefault = { false, false, false };
QDir m_dir;
BaseInstance* m_instance;