Browse Source

qml: ElDialog titlebar click moves focus, hack for android to remove onscreen keyboard

master
Sander van Grieken 3 years ago
parent
commit
f0f320b119
  1. 19
      electrum/gui/qml/components/controls/ElDialog.qml

19
electrum/gui/qml/components/controls/ElDialog.qml

@ -29,7 +29,21 @@ Dialog {
}
}
header: ColumnLayout {
header: Item {
implicitWidth: rootLayout.implicitWidth
implicitHeight: rootLayout.implicitHeight
MouseArea {
anchors.fill: parent
onClicked: {
// hack to allow titlebar click to remove on screen keyboard by
// moving focus to label
titleLabel.forceActiveFocus()
}
}
ColumnLayout {
id: rootLayout
spacing: 0
RowLayout {
@ -46,6 +60,7 @@ Dialog {
}
Label {
id: titleLabel
text: title
elide: Label.ElideRight
Layout.fillWidth: true
@ -66,5 +81,5 @@ Dialog {
color: Qt.rgba(0,0,0,0.5)
}
}
}
}

Loading…
Cancel
Save