зеркало из https://github.com/nextcloud/desktop.git
Add-folder wizard: Make sure there is a scrollbar if folder names are too long
Fixes #2962
This commit is contained in:
Родитель
3c9acdf724
Коммит
653a00d63d
|
@ -246,6 +246,12 @@ FolderWizardRemotePath::FolderWizardRemotePath(AccountPtr account)
|
||||||
_lscolTimer.setInterval(500);
|
_lscolTimer.setInterval(500);
|
||||||
_lscolTimer.setSingleShot(true);
|
_lscolTimer.setSingleShot(true);
|
||||||
connect(&_lscolTimer, SIGNAL(timeout()), SLOT(slotLsColFolderEntry()));
|
connect(&_lscolTimer, SIGNAL(timeout()), SLOT(slotLsColFolderEntry()));
|
||||||
|
|
||||||
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
|
||||||
|
_ui.folderTreeWidget->header()->setSectionResizeMode(0,QHeaderView::ResizeToContents);
|
||||||
|
// Make sure that there will be a scrollbar when the contents is too wide
|
||||||
|
_ui.folderTreeWidget->header()->setStretchLastSection(false);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void FolderWizardRemotePath::slotAddRemoteFolder()
|
void FolderWizardRemotePath::slotAddRemoteFolder()
|
||||||
|
|
Загрузка…
Ссылка в новой задаче