Index: sources/gui/qml/pages/settings/SettingsExportLogs.qml =================================================================== diff -u -ra9b3b248a786b93bf6dfd8c29946d708d18dde9a -rf27e2cd32b03ade797a71947a8c9199c5e5a07e1 --- sources/gui/qml/pages/settings/SettingsExportLogs.qml (.../SettingsExportLogs.qml) (revision a9b3b248a786b93bf6dfd8c29946d708d18dde9a) +++ sources/gui/qml/pages/settings/SettingsExportLogs.qml (.../SettingsExportLogs.qml) (revision f27e2cd32b03ade797a71947a8c9199c5e5a07e1) @@ -90,6 +90,8 @@ } function doExport() { + notificationText = _logTypeCombo.displayText + " " + + qsTr("log export to USB in progress ... ") refreshModels() switch (_logTypeCombo.currentIndex) { @@ -149,7 +151,9 @@ function onDidUSBDriveRemove ( ) { _usbFolderColumn. clearModel ( ) } function onDidExportLog ( vValue ) { _usbFolderColumn. clearModel ( ) } function onDidUSBDriveMount ( ) { _usbFolderColumn.updateModel ( ) } - function onDidExport ( ) { _usbFolderColumn.updateModel ( ) } + function onDidExport ( ) { _usbFolderColumn.updateModel ( ) + notificationText = _logTypeCombo.displayText + " " + + qsTr("log export to USB is complete") } } USBButton { id: _usbEjectButton @@ -193,6 +197,7 @@ // FIXME: This combobox needs to be a global Component ComboBox { id : _logTypeCombo onCurrentIndexChanged : { + notificationText = "" _root.updatePanels(currentIndex) } enabled : ! _GuiView.exportRunning && ! isUpdatePanels