diff options
author | Friedemann Kleint <[email protected]> | 2017-04-21 10:53:50 +0200 |
---|---|---|
committer | Friedemann Kleint <[email protected]> | 2017-05-04 06:49:47 +0000 |
commit | a218356f838c4be8aad8f447e8d6187a8af639ff (patch) | |
tree | 192e97377fcf74a71f1159a3cc98d9be972e3d55 | |
parent | 555750221ee3850ba70169a2b6854041b434c592 (diff) |
texteditor example: Fix path to editpaste iconv5.9.0-beta4
Drop prefix so that it can be found from either resources
or files.
Change-Id: Ib9dcab86f22bff0f8a3d7f0f22aa35d717b3569f
Reviewed-by: Simon Hausmann <[email protected]>
Reviewed-by: J-P Nurmi <[email protected]>
-rw-r--r-- | examples/quickcontrols/controls/texteditor/qml/main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/quickcontrols/controls/texteditor/qml/main.qml b/examples/quickcontrols/controls/texteditor/qml/main.qml index 8aa9ee7be..1544ebc90 100644 --- a/examples/quickcontrols/controls/texteditor/qml/main.qml +++ b/examples/quickcontrols/controls/texteditor/qml/main.qml @@ -93,7 +93,7 @@ ApplicationWindow { id: pasteAction text: "Paste" shortcut: "ctrl+v" - iconSource: "qrc:images/editpaste.png" + iconSource: "images/editpaste.png" iconName: "edit-paste" onTriggered: textArea.paste() } |