Notification copy feature

asked 2015-01-10 17:17:19 +0200

kimmoli gravatar image

updated 2015-01-10 21:18:34 +0200

Sometimes i would like to copy the notification body text (specially from push notifications), but there is no way to do it.

Anyone else?

One possible implementation, maybe i should make a patch out of it...

Not recommended... This change causes maliit to crash when copying is done. maliit-server: unhandled page fault (11) at 0x00000040, code 0x017

/usr/share/lipstick-jolla-home-qt5/notifications/NotificationListView.qml :

                     text: qsTrId("lipstick-la-remove")
                     onClicked: remove()
                 }
+                MenuItem {
+                    text: "Copy"
+                    onClicked: Clipboard.text = modelData.body
+                }
             }
         }
     }

results

image description

edit retag flag offensive close delete

Comments

Additionally it would be nice to have an option for removing single notifications.

hongakonga ( 2015-01-12 00:02:09 +0200 )edit