Index: sources/gui/qml/pages/settings/SettingsExportLogs.qml =================================================================== diff -u -r5687815256ae070a9a207107088e3f72dd464da0 -re568c0be76dcf80834f68b30d7291f45172b6f69 --- sources/gui/qml/pages/settings/SettingsExportLogs.qml (.../SettingsExportLogs.qml) (revision 5687815256ae070a9a207107088e3f72dd464da0) +++ sources/gui/qml/pages/settings/SettingsExportLogs.qml (.../SettingsExportLogs.qml) (revision e568c0be76dcf80834f68b30d7291f45172b6f69) @@ -84,7 +84,7 @@ readonly property bool horizontalLayout : _GuiView.useLogLongName confirmVisible : false - notificationMargin : Variables.notificationHeight + notificationMargin : _root.horizontalLayout ? 0 : Variables.notificationHeight bottomMarginContent : Variables.settingsContentBottomMargin - Variables.minVGap function refreshModels() { @@ -160,40 +160,40 @@ } USBButton { id: _usbEjectButton - width : 155 - height : 50 + width : Variables.backButtonWidth + height : Variables.backButtonHeight anchors.right : _root.right anchors.top : _root.top anchors.margins : Variables.headerButtonsMargin enabled : _GuiView.usbIsReady && !_GuiView.exportRunning && ! isUpdatePanels } Row { id : _contentRect - spacing : Variables.minVGap + spacing : Variables.minVGap2 * 2 anchors.fill : parent anchors.topMargin : parent. topMarginContent - 25 // move 25 up anchors.bottomMargin : parent.bottomMarginContent anchors.rightMargin : parent. sidesMarginContent anchors.leftMargin : parent. sidesMarginContent anchors.horizontalCenter : parent.horizontalCenter - readonly property int columnWidthProgress : 350 - readonly property int columnWidthFolder : _root.horizontalLayout ? 840 : 420 - readonly property int columnWidthFileName : _root.horizontalLayout ? 685 : 285 // best combination - readonly property int columnWidthFileSize : _root.horizontalLayout ? 105 : 105 // best combination + readonly property int columnWidthProgress : 370 + readonly property int columnWidthFolder : _root.horizontalLayout ? 1400 : 700 + readonly property int columnWidthFileName : _root.horizontalLayout ? 1150 : 500 // best combination + readonly property int columnWidthFileSize : _root.horizontalLayout ? 110 : 110 // best combination Column { id : _progressColumn - property int progressWidth : 125 + property int progressWidth : 160 property int progressHeight : height - _logTypeCombo.height - _logTypeExportButton.height - spacing : 10 + spacing : 30 width : _contentRect.columnWidthProgress height : parent.height Row { id : _logTypeRow anchors.left : parent.left width : parent.width - height : _root.headetRowHight + height : 70 // _root.headetRowHight spacing : _logTypeCombo.width - _logTypeExportButton.width // FIXME: This combobox needs to be a global Component @@ -275,12 +275,14 @@ anchors.left : _SDC_progressItem.right anchors.leftMargin : _progressColumn.spacing anchors.verticalCenter : parent.verticalCenter + font.pixelSize : Fonts.fontPixelSettingLog text : _root.sdcLabel + _root.devUnitLabel + ("Free : %1\nTotal: %2").arg( Variables.sizeConverted( _GuiView.sdAvail, 1000, 3) ).arg( Variables.sizeConverted( _GuiView.sdTotal, 1000, 3) ) } Label { anchors.fill : parent verticalAlignment : Text.AlignVCenter horizontalAlignment : Text.AlignHCenter + font.pixelSize : Fonts.fontPixelSettingLog text : _SDC_progressItem.percent } } @@ -297,12 +299,14 @@ anchors.left : _USB_progressItem.right anchors.leftMargin : _progressColumn.spacing anchors.verticalCenter : parent.verticalCenter + font.pixelSize : Fonts.fontPixelSettingLog text : _root.usbLabel + _root.devUnitLabel + ("Free : %1\nTotal: %2").arg( Variables.sizeConverted( _GuiView.usbAvail, 1000, 3) ).arg( Variables.sizeConverted( _GuiView.usbTotal, 1000, 3) ) } Label { anchors.fill : parent verticalAlignment : Text.AlignVCenter horizontalAlignment : Text.AlignHCenter + font.pixelSize : Fonts.fontPixelSettingLog text : _USB_progressItem.percent } } @@ -318,7 +322,7 @@ } Grid { columns : _root.horizontalLayout ? 1 : 2 - spacing : 5 + spacing : 40 width : _contentRect.columnWidthFolder height : parent.height Column { id : _sdcFolderColumn @@ -334,7 +338,7 @@ _sdcFolderModel.nameFilters = _root.typeFilterClr } - spacing : 5 + spacing : 15 width : _contentRect.columnWidthFolder height : _root.horizontalLayout ? parent.height / 2 : parent.height Label { id : _sdcLabel @@ -439,7 +443,7 @@ } Text { id : _sdcFileSizeText clip : true - width : isShownInList ? _contentRect.columnWidthFileSize : 0 + width : isShownInList ? _contentRect.columnWidthFileSize : 0 text : Variables.sizeConverted( fileSize, 1000, 3) color : Colors.textMain font.pixelSize : Fonts.fontPixelTextRectExtra @@ -487,7 +491,7 @@ } } - spacing : 5 + spacing : 15 width : _contentRect.columnWidthFolder height : _root.horizontalLayout ? parent.height / 2 : parent.height Label { id : _usbLabel