summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2017-09-12 11:51:33 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2017-09-12 11:51:33 +0200
commit235a94d64de8a508845d9847ca1bbdae0512517c (patch)
treeb9673a331d5f6c939e2668a353a8ea2389f65360 /components
parent1981dc7edd689dc9e4d1ac43ede3da2eed6008f4 (diff)
downloadkube-235a94d64de8a508845d9847ca1bbdae0512517c.tar.gz
kube-235a94d64de8a508845d9847ca1bbdae0512517c.zip
add format text icons
Diffstat (limited to 'components')
-rw-r--r--components/kube/contents/ui/ComposerView.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/components/kube/contents/ui/ComposerView.qml b/components/kube/contents/ui/ComposerView.qml
index 2efb69f6..79e2f967 100644
--- a/components/kube/contents/ui/ComposerView.qml
+++ b/components/kube/contents/ui/ComposerView.qml
@@ -270,16 +270,16 @@ Kube.View {
270 } 270 }
271 271
272 RowLayout { 272 RowLayout {
273 Kube.Button { 273 Kube.IconButton {
274 text: "b" 274 iconName: Kube.Icons.bold
275 checkable: true 275 checkable: true
276 } 276 }
277 Kube.Button { 277 Kube.IconButton {
278 text: "i" 278 iconName: Kube.Icons.italic
279 checkable: true 279 checkable: true
280 } 280 }
281 Kube.Button { 281 Kube.IconButton {
282 text: "u" 282 iconName: Kube.Icons.underline
283 checkable: true 283 checkable: true
284 } 284 }
285 285