1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 21:42:51 -05:00

feat: accept numpad's enter key to finish screenshot selection (#1210)

* added reverse scrolling to settings and widget

* added support for dankbar scrolling

* Better settings description

* removed isNiri conditional from search index

* Added numpad enter key to finish screenshot selection
This commit is contained in:
vha
2025-12-29 17:13:57 +01:00
committed by GitHub
parent 60034be06a
commit 5f77d69dd8

View File

@@ -141,7 +141,7 @@ func (r *RegionSelector) setupKeyboardHandlers() {
for _, os := range r.surfaces {
r.redrawSurface(os)
}
case 28, 57:
case 28, 57, 96:
if r.selection.hasSelection {
r.finishSelection()
}