aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn Rutledge <[email protected]>2025-04-25 20:03:10 +0200
committerShawn Rutledge <[email protected]>2025-04-28 17:33:19 +0000
commit5e8fba77156623d9de7b686d09aa35ff9e15e571 (patch)
treefe2339a61d7dfdfaeb9e6b53d2b093fb58a69f06
parent9cd4e29afd680972d7531ec4bfff12661b71c81f (diff)
TextEditor example: Add font and color dialog actions to Format menuHEADdev
Task-number: QTBUG-136251 Pick-to: 6.8 6.9 Change-Id: I64d7a406d4acff5395cfc18c201888c17a44e10f Reviewed-by: Oliver Eftevaag <[email protected]>
-rw-r--r--examples/quickcontrols/texteditor/qml/texteditor.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/quickcontrols/texteditor/qml/texteditor.qml b/examples/quickcontrols/texteditor/qml/texteditor.qml
index cb351aab04..d75827bb1a 100644
--- a/examples/quickcontrols/texteditor/qml/texteditor.qml
+++ b/examples/quickcontrols/texteditor/qml/texteditor.qml
@@ -219,6 +219,12 @@ ApplicationWindow {
MenuItem {
action: strikeoutAction
}
+ MenuItem {
+ action: fontDialogAction
+ }
+ MenuItem {
+ action: colorDialogAction
+ }
MenuSeparator {}