mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fix alignment issues in keyboard shortcut options. Fixes #3080
This commit is contained in:
committed by
Dave Page
parent
9a498c2877
commit
c91a597df9
@@ -84,25 +84,24 @@ class DebuggerModule(PgAdminModule):
|
||||
|
||||
shortcut_fields = [
|
||||
{
|
||||
'name': 'alt',
|
||||
'type': 'checkbox',
|
||||
'label': gettext('Alt/Option')
|
||||
'name': 'key',
|
||||
'type': 'keyCode',
|
||||
'label': gettext('Key')
|
||||
},
|
||||
{
|
||||
'name': 'shift',
|
||||
'type': 'checkbox',
|
||||
'label': gettext('Shift')
|
||||
},
|
||||
|
||||
{
|
||||
'name': 'control',
|
||||
'type': 'checkbox',
|
||||
'label': gettext('Ctrl')
|
||||
},
|
||||
{
|
||||
'name': 'key',
|
||||
'type': 'keyCode',
|
||||
'label': gettext('Key')
|
||||
'name': 'alt',
|
||||
'type': 'checkbox',
|
||||
'label': gettext('Alt/Option')
|
||||
}
|
||||
]
|
||||
|
||||
|
Reference in New Issue
Block a user