Merge pull request #11473 from ElderOrb/case7926

7926 Create Mode: the keyboard tray is not styled correctly
This commit is contained in:
anshuman64 2017-09-27 14:35:10 -07:00 committed by GitHub
commit 9e1a181cbc

View file

@ -11,9 +11,14 @@
import QtQuick 2.0 import QtQuick 2.0
import "." import "."
Item { Rectangle {
id: keyboardBase id: keyboardBase
anchors.left: parent.left
anchors.right: parent.right
color: "#252525"
property bool raised: false property bool raised: false
property bool numeric: false property bool numeric: false
@ -105,6 +110,7 @@ Item {
height: showMirrorText ? mirrorTextHeight : 0 height: showMirrorText ? mirrorTextHeight : 0
width: keyboardWidth width: keyboardWidth
color: "#252525" color: "#252525"
anchors.horizontalCenter: parent.horizontalCenter
TextEdit { TextEdit {
id: mirrorText id: mirrorText