mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-25 17:52:02 +02:00
Merge branch 'copilot/fix-issue-10278' of https://github.com/kovidgoyal/kitty
Fixes #10278
This commit is contained in:
@@ -190,6 +190,8 @@ Detailed list of changes
|
|||||||
|
|
||||||
- Wayland: fix using remote control to resize OS windows on some tiling compositors leading to broken rendering
|
- Wayland: fix using remote control to resize OS windows on some tiling compositors leading to broken rendering
|
||||||
|
|
||||||
|
- macOS: fix ``edge=none`` panel height shrinking when ``margin_top`` is non-zero in the panel/quick-access-terminal kittens (:iss:`10278`)
|
||||||
|
|
||||||
|
|
||||||
0.48.0 [2026-07-18]
|
0.48.0 [2026-07-18]
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|||||||
@@ -2799,7 +2799,11 @@ _glfwPlatformSetLayerShellConfig(_GLFWwindow* window, const GLFWLayerShellConfig
|
|||||||
if (height < 1.) height = NSHeight(placement_frame);
|
if (height < 1.) height = NSHeight(placement_frame);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (config.edge != GLFW_EDGE_CENTER_SIZED) {
|
if (config.edge == GLFW_EDGE_NONE) {
|
||||||
|
// For edge=none the panel has a fixed size; margins only translate its position
|
||||||
|
x += config.requested_left_margin;
|
||||||
|
y -= config.requested_top_margin;
|
||||||
|
} else if (config.edge != GLFW_EDGE_CENTER_SIZED) {
|
||||||
x += config.requested_left_margin; width -= config.requested_left_margin + config.requested_right_margin;
|
x += config.requested_left_margin; width -= config.requested_left_margin + config.requested_right_margin;
|
||||||
y += config.requested_bottom_margin; height -= config.requested_top_margin + config.requested_bottom_margin;
|
y += config.requested_bottom_margin; height -= config.requested_top_margin + config.requested_bottom_margin;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user