mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
Launcher: Restored keyboard navigation with PageUp/PageDown/Home/End + Vim Keys
Oddly Ctrl+J does not work for me...
This commit is contained in:
@@ -11,10 +11,12 @@ ColumnLayout {
|
||||
property string description: ""
|
||||
property bool readOnly: false
|
||||
property bool enabled: true
|
||||
property int inputMaxWidth: 420 * scaling
|
||||
property int inputMaxWidth: Math.round(420 * scaling)
|
||||
property color labelColor: Color.mOnSurface
|
||||
property color descriptionColor: Color.mOnSurfaceVariant
|
||||
property string fontFamily: Settings.data.ui.fontDefault
|
||||
property real fontSize: Style.fontSizeS * scaling
|
||||
property int fontWeight: Style.fontWeightRegular
|
||||
|
||||
property alias text: input.text
|
||||
property alias placeholderText: input.placeholderText
|
||||
@@ -77,7 +79,8 @@ ColumnLayout {
|
||||
placeholderTextColor: Color.mOnSurfaceVariant
|
||||
background: null
|
||||
font.family: fontFamily
|
||||
font.pointSize: Style.fontSizeS * scaling
|
||||
font.pointSize: fontSize
|
||||
font.weight: fontWeight
|
||||
onEditingFinished: root.editingFinished()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user