Index: sources/gui/qml/pages/settings/SettingsExportLogs.qml =================================================================== diff -u -r97b77e88de3f6c41504ec5f9f3606a2143d27ff8 -r80e196a153549a10b01ddc52fdd3c4f09d215da6 --- sources/gui/qml/pages/settings/SettingsExportLogs.qml (.../SettingsExportLogs.qml) (revision 97b77e88de3f6c41504ec5f9f3606a2143d27ff8) +++ sources/gui/qml/pages/settings/SettingsExportLogs.qml (.../SettingsExportLogs.qml) (revision 80e196a153549a10b01ddc52fdd3c4f09d215da6) @@ -507,6 +507,30 @@ width : _usbFolderView.width height : _contentRect.columnCellHeight + ProgressBar { id: _usbProgressRect + anchors{ + fill : parent + leftMargin : Variables.defaultMargin + topMargin : 5 + bottomMargin : 5 + rightMargin : Variables.defaultMargin + + } + color : _GuiView.exportRunning ? Colors.borderButtonSelected : Colors.transparent + bgColor : Colors.transparent + width : parent.width + height : parent.height + minimum : 0 + maximum : 100 // percent + value : _GuiView.exportPercent + z : 0 + radius : 5 + minText.visible : false + maxText.visible : false + marker.visible : false + visible : index === 0 + } + Row { id : _usbFileRow anchors.fill : parent height : parent.height