diff --git a/src/gui/folderwizard.cpp b/src/gui/folderwizard.cpp index 6326194cd..88097f679 100644 --- a/src/gui/folderwizard.cpp +++ b/src/gui/folderwizard.cpp @@ -246,6 +246,12 @@ FolderWizardRemotePath::FolderWizardRemotePath(AccountPtr account) _lscolTimer.setInterval(500); _lscolTimer.setSingleShot(true); 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()