mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-08-02 14:57:31 +03:00
macos: offset quicklook box a bit to look better (imo)
This commit is contained in:
@ -1018,8 +1018,10 @@ extension Ghostty.SurfaceView: NSTextInputClient {
|
|||||||
// QuickLook
|
// QuickLook
|
||||||
var sel: ghostty_selection_s = ghostty_selection_s();
|
var sel: ghostty_selection_s = ghostty_selection_s();
|
||||||
if ghostty_surface_selection_info(surface, &sel) {
|
if ghostty_surface_selection_info(surface, &sel) {
|
||||||
x = sel.tl_px_x;
|
// The -2/+2 here is subjective. QuickLook seems to offset the rectangle
|
||||||
y = sel.tl_px_y;
|
// a bit and I think these small adjustments make it look more natural.
|
||||||
|
x = sel.tl_px_x - 2;
|
||||||
|
y = sel.tl_px_y + 2;
|
||||||
} else {
|
} else {
|
||||||
ghostty_surface_ime_point(surface, &x, &y)
|
ghostty_surface_ime_point(surface, &x, &y)
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user