mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03:00
Account Settings: Remove the ability to select
This commit is contained in:
parent
fd83ee64af
commit
81c19232a5
1 changed files with 2 additions and 2 deletions
|
@ -87,9 +87,9 @@ Qt::ItemFlags FolderStatusModel::flags ( const QModelIndex &index ) const
|
|||
return Qt::ItemIsEnabled | ret;
|
||||
}
|
||||
case RootFolder:
|
||||
return Qt::ItemIsSelectable | Qt::ItemIsEnabled;
|
||||
return Qt::ItemIsEnabled;
|
||||
case SubFolder:
|
||||
return Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsUserCheckable;
|
||||
return Qt::ItemIsEnabled | Qt::ItemIsUserCheckable;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue