diff options
-rw-r--r-- | contents/ui/AnnouncementView.qml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/contents/ui/AnnouncementView.qml b/contents/ui/AnnouncementView.qml index e178482..95caf9e 100644 --- a/contents/ui/AnnouncementView.qml +++ b/contents/ui/AnnouncementView.qml @@ -49,6 +49,14 @@ RowLayout { } PlasmaComponents3.ToolButton { + icon.name: "emblem-important-symbolic" + onClicked: () => { + announcementLabel.font.bold = true + announcementLabel.color = PlasmaCore.Theme.negativeTextColor + } + } + + PlasmaComponents3.ToolButton { icon.name: "delete" onClicked: () => { // avoid non-fatal TypeError due to announcementView.parent=null but .width=parent.width |