aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickcontrols2/texteditor
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@qt.io>2016-09-03 12:46:10 +0200
committerJ-P Nurmi <jpnurmi@qt.io>2016-09-05 08:12:51 +0000
commit9a55b34e292c725a4fa394a71e0a3d851e4e488f (patch)
tree8c8e280937a41f742cc60fbc63469ae590114537 /examples/quickcontrols2/texteditor
parent850f6e2f2f096541e3c02cc1030d3a7f7b9ae190 (diff)
texteditor: use RoundButton
Change-Id: I4cb9b2151698e30deec969868ffdb0100b7d98a3 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'examples/quickcontrols2/texteditor')
-rw-r--r--examples/quickcontrols2/texteditor/qml/+touch/texteditor.qml17
1 files changed, 1 insertions, 16 deletions
diff --git a/examples/quickcontrols2/texteditor/qml/+touch/texteditor.qml b/examples/quickcontrols2/texteditor/qml/+touch/texteditor.qml
index a7f176a9..11d153f5 100644
--- a/examples/quickcontrols2/texteditor/qml/+touch/texteditor.qml
+++ b/examples/quickcontrols2/texteditor/qml/+touch/texteditor.qml
@@ -38,7 +38,6 @@
**
****************************************************************************/
-import QtGraphicalEffects 1.0
import QtQuick 2.8
import QtQuick.Controls 2.1
import QtQuick.Controls.Material 2.1
@@ -226,7 +225,7 @@ ApplicationWindow {
}
}
- Button {
+ RoundButton {
id: editButton
font.family: "fontello"
text: "\uE809" // icon-pencil
@@ -245,20 +244,6 @@ ApplicationWindow {
// Force focus on the text area so the cursor and footer show up.
textArea.forceActiveFocus()
}
-
- background: Rectangle {
- implicitWidth: parent.width
- implicitHeight: parent.height
- radius: width / 2
- color: parent.down ? Qt.darker(Material.accent) : Material.accent
-
- layer.enabled: editButton.enabled
- layer.effect: DropShadow {
- color: "#44000000"
- verticalOffset: 2
- samples: 16
- }
- }
}
Dialog {