Index: sources/gui/qml/pages/settings/SettingsExportLogs.qml =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1a65211f5b694f7f0defb35fe6f060a26455109b --- sources/gui/qml/pages/settings/SettingsExportLogs.qml (.../SettingsExportLogs.qml) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/qml/pages/settings/SettingsExportLogs.qml (.../SettingsExportLogs.qml) (revision 1a65211f5b694f7f0defb35fe6f060a26455109b) @@ -335,11 +335,14 @@ ScrollBar { anchors.fill : _sdcFolderView flickable : _sdcFolderView + handleWidth : Variables.settingsExportLogsScrollBarWidth } ListView { id : _sdcFolderView + enabled : !_GuiView.exportRunning && ! isUpdatePanels clip : true anchors.fill : parent + anchors.margins : 10 anchors.leftMargin : 5 anchors.rightMargin : 5 spacing : 3 @@ -470,13 +473,18 @@ ScrollBar { anchors.fill : _usbFolderView flickable : _usbFolderView + handleWidth : Variables.settingsExportLogsScrollBarWidth } ListView { id : _usbFolderView clip : true anchors.fill : parent anchors.margins : 10 - spacing : 5 + spacing : 3 + + anchors.leftMargin : 5 + anchors.rightMargin : 5 + FolderListModel { id : _usbFolderModel // FIXME: I don't like this model, it's too lazy and I don't have control over it. There has to be a Model for this. showDirs : false sortField : FolderListModel.Time