mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
UI: Expand folder treeview on single click #3585
This commit is contained in:
parent
abfd97949d
commit
ef607e29de
@ -121,6 +121,11 @@ AccountSettings::AccountSettings(AccountState *accountState, QWidget *parent) :
|
||||
this, SLOT(slotUpdateQuota(qint64,qint64)));
|
||||
|
||||
connect(ui->deleteButton, SIGNAL(clicked()) , this, SLOT(slotDeleteAccount()));
|
||||
|
||||
// Expand already on single click
|
||||
ui->_folderList->setExpandsOnDoubleClick(false);
|
||||
QObject::connect(ui->_folderList, SIGNAL(clicked(const QModelIndex &)),
|
||||
ui->_folderList, SLOT(expand(const QModelIndex &)));
|
||||
}
|
||||
|
||||
void AccountSettings::slotCustomContextMenuRequested(const QPoint &pos)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user