Skip to content

Commit

Permalink
fix: AppListview can not launchApp onKeypressed
Browse files Browse the repository at this point in the history
  • Loading branch information
kegechen authored and BLumia committed May 29, 2024
1 parent b61fcbf commit 034f6ca
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions qml/windowed/AppListView.qml
Original file line number Diff line number Diff line change
Expand Up @@ -206,14 +206,6 @@ FocusScope {
}
}

Keys.onReturnPressed: {
launchApp(desktopId)
}

Keys.onSpacePressed: {
launchApp(desktopId)
}

TapHandler {
onTapped: {
launchApp(desktopId)
Expand All @@ -226,6 +218,14 @@ FocusScope {
button: itemDelegate
}
}

Keys.onReturnPressed: {
launchApp(desktopId)
}

Keys.onSpacePressed: {
launchApp(desktopId)
}
}
}

Expand Down

0 comments on commit 034f6ca

Please sign in to comment.