mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-01-11 14:40:25 +01:00
Stack doesn't retain focus when doing cyclestack next #285
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @jpmiller25 on GitHub (Jan 22, 2024).
I have an ahk hotkey mapped to CycleStack("next") which performs:
CycleStack(cycle_direction) {
RunWait("komorebic.exe cycle-stack " cycle_direction, , "Hide")
}
(from komorebic.lib.ahk)
I want to use it to quickly flip through the stack with one key. It keeps focus when I cycle through, but I think when it cycles back to the start is when focus switches to another window on a different screen. I am on a multiple monitor setup.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Focus will remain on the window stack that is being cycled.
@LGUG2Z commented on GitHub (Feb 8, 2024):
Unfortunately I'm not able to reproduce this with the latest build from
masterand I don't remember coming across a similar issue before in earlier versions (I use the same stacking and cycling workflow quite a lot)Can you try reproducing this with a build from
master? If not, the next release should be out within the next two weeks to try to repro this again with an update from scoop or winget.@jpmiller25 commented on GitHub (Feb 15, 2024):
Thanks, building from source has corrected this issue.
@jpmiller25 commented on GitHub (Feb 15, 2024):
Closing