Launcher: Restored keyboard navigation with PageUp/PageDown/Home/End + Vim Keys

Oddly Ctrl+J does not work for me...
This commit is contained in:
LemmyCook 2025-09-03 17:02:05 -04:00
parent 392f0e14b2
commit 65f73bb1ba
2 changed files with 95 additions and 56 deletions

View file

@ -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()
}
}