Replies: 2 comments 1 reply
-
|
See #9734 as I understand it is is platform convention on macOS for
clicks in a non focused OS Window to not take effect on controls in that
window.
|
Beta Was this translation helpful? Give feedback.
1 reply
-
|
OK, if the platform behavior has changed I have no issue changing kitty to match. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When a kitty window has multiple panes (e.g., A | B) and is in the background, clicking on a non-active pane only activates the window — the clicked pane doesn't get focus. A second click is needed to actually switch.
This is because acceptsFirstMouse: in glfw/cocoa_window.m returns NO, which tells macOS to not deliver the mouseDown: event on the first click when the window is inactive. I noticed that iTerm2 and Ghostty both handle this by activating the clicked pane on the first click.
Would it be acceptable to change this behavior?
Beta Was this translation helpful? Give feedback.
All reactions