summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'mobile-widgets/qml/main.qml')
-rw-r--r--mobile-widgets/qml/main.qml9
1 files changed, 1 insertions, 8 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml
index eae7e518b..091e53969 100644
--- a/mobile-widgets/qml/main.qml
+++ b/mobile-widgets/qml/main.qml
@@ -50,14 +50,7 @@ Kirigami.ApplicationWindow {
showPassiveNotification(notificationText, 5000)
}
} else {
- var oldText = textBlock.text
- if (notificationText.startsWith("\r")) {
- // replace the last line that was sent
- oldText = oldText.substr(0, oldText.lastIndexOf("\n"))
- textBlock.text = oldText + "\n" + notificationText.substr(1)
- } else {
- textBlock.text = oldText + "\n" + notificationText
- }
+ textBlock.text = textBlock.text + "\n" + notificationText
}
}
visible: false