MacOS: quick terminal show in error position when using multi monitor #4353
Unanswered
acehinnnqru
asked this question in
Feature Requests, Ideas
Replies: 2 comments 2 replies
-
|
I'm encountering the same issue. I noticed that in case .center:
return .init(x: (screen.visibleFrame.maxX - window.frame.width) / 2,
y: (screen.visibleFrame.maxY - window.frame.height) / 2)Would it be more appropriate to calculate it this way instead? case .center:
return .init(x: screen.visibleFrame.minX + (screen.visibleFrame.width - window.frame.width) / 2,
y: screen.visibleFrame.minY + (screen.visibleFrame.height - window.frame.height) / 2) |
Beta Was this translation helpful? Give feedback.
2 replies
-
|
This PR #4501 fixed this: |
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 I move focus to another monitor, try to call out the quick terminal, it places in the monitor that ghostty in but not the monitor I focus.

And it only show half. I think it's a bug which calculate wrong position:
My ghostty config:
Beta Was this translation helpful? Give feedback.
All reactions