mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Quality-of-life improvements to InputDialog
This commit is contained in:
parent
b5e25a8369
commit
9a5d457a49
1 changed files with 9 additions and 0 deletions
|
@ -21,6 +21,11 @@ ApplicationWindow {
|
|||
width: 350
|
||||
height: fontMetrics.lineSpacing * 7
|
||||
|
||||
Shortcut {
|
||||
sequence: StandardKey.Cancel
|
||||
onActivated: dbb.rejected()
|
||||
}
|
||||
|
||||
ColumnLayout {
|
||||
spacing: Nheko.paddingMedium
|
||||
anchors.margins: Nheko.paddingMedium
|
||||
|
@ -36,11 +41,15 @@ ApplicationWindow {
|
|||
id: statusInput
|
||||
|
||||
Layout.fillWidth: true
|
||||
onAccepted: dbb.accepted()
|
||||
focus: true
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
footer: DialogButtonBox {
|
||||
id: dbb
|
||||
|
||||
standardButtons: DialogButtonBox.Ok | DialogButtonBox.Cancel
|
||||
onAccepted: {
|
||||
if (inputDialog.onAccepted)
|
||||
|
|
Loading…
Reference in a new issue