mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 21:46:03 +03:00
Fix folder item being inactive.
This commit is contained in:
parent
72d51e4667
commit
b0236eaa24
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ FolderStatusModel::FolderStatusModel()
|
|||
|
||||
Qt::ItemFlags FolderStatusModel::flags ( const QModelIndex& ) const
|
||||
{
|
||||
return Qt::ItemIsSelectable;
|
||||
return Qt::ItemIsSelectable | Qt::ItemIsEnabled;
|
||||
}
|
||||
|
||||
QVariant FolderStatusModel::data(const QModelIndex &index, int role) const
|
||||
|
|
Loading…
Reference in a new issue