Index: sources/gui/qml/pages/settings/SettingsExportLogs.qml =================================================================== diff -u -r6eaef41ddd9dcb8717b1fbb7925b52279b0553cd -rc2f474ff07c98aa350c445a2474976a3cf985f40 --- sources/gui/qml/pages/settings/SettingsExportLogs.qml (.../SettingsExportLogs.qml) (revision 6eaef41ddd9dcb8717b1fbb7925b52279b0553cd) +++ sources/gui/qml/pages/settings/SettingsExportLogs.qml (.../SettingsExportLogs.qml) (revision c2f474ff07c98aa350c445a2474976a3cf985f40) @@ -64,9 +64,14 @@ property bool isDevice : _GuiView.runOnDevice readonly property string typePathClr : "" readonly property string typePathPrefix : "file://" + readonly property string typePathTxr : typePathPrefix + (isDevice ? "/mnt/data/configurations" : "/home/denali/Desktop/sd-card" ) + readonly property string typePathSrc : typePathPrefix + (isDevice ? "/media/sd-card" : "/home/denali/Desktop/sd-card" ) + readonly property string typePathDst : typePathPrefix + (isDevice ? "/media/usb" : "/home/denali/Desktop/usb-disk") +/* Qt6 Port: replace the above typePathTxr, typePathSrc, typePathDst with the following ones: readonly property string typePathTxr : typePathPrefix + (isDevice ? "/mnt/data/configurations" : "/home/leahi/Desktop/sd-card" ) readonly property string typePathSrc : typePathPrefix + (isDevice ? "/media/sd-card" : "/home/leahi/Desktop/sd-card" ) readonly property string typePathDst : typePathPrefix + (isDevice ? "/media/usb" : "/home/leahi/Desktop/usb-disk") +*/ readonly property string typeFolderApplication : "/log" readonly property string typeFolderService : "/service" readonly property string typeFolderTreatment : "/treatment"