Allow pressing escape to cancel in edit profile

This commit is contained in:
miruka 2019-08-22 10:22:21 -04:00
parent cc7fbc5ab7
commit 3749d1e135
2 changed files with 7 additions and 2 deletions

View File

@ -34,7 +34,9 @@
- Terrible performance using `QT_QPA_PLATFORM=wayland-egl`, must use `xcb`
- UI
- Use a Loader for context menus
- Make invite icon blink if there's no one but ourself in the room,
but never do it again once the user hovered it long enough to show tooltip
or clicked on it once
- Make HListView scrollbars visible
- Remove first html lists left margin
- Adapt UI for small heights
@ -86,7 +88,6 @@
- Show it when hovering/hitting focus keybind on the left when collapsed
- Ability to drag on any place of the pane to resize
- Invite to room
- Server selection
- Register/Forgot? for SignIn dialog
- Add room

View File

@ -150,6 +150,8 @@ HGridLayout {
Layout.fillWidth: true
Layout.maximumWidth: 480
Keys.onEscapePressed: cancelChanges()
}
HLabeledTextField {
@ -165,6 +167,8 @@ HGridLayout {
Layout.fillWidth: true
Layout.maximumWidth: 480
Keys.onEscapePressed: cancelChanges()
}
}