From 622cae19ebe9418d7e0891519df96170bc76ebec Mon Sep 17 00:00:00 2001 From: Max Date: Sat, 24 Feb 2024 02:09:14 +0100 Subject: [PATCH] Fix alignment of traffic lights (#8128) closes #7339 --- crates/zed/src/zed.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/zed/src/zed.rs b/crates/zed/src/zed.rs index e52c0695c9..c8572a777d 100644 --- a/crates/zed/src/zed.rs +++ b/crates/zed/src/zed.rs @@ -94,7 +94,7 @@ pub fn build_window_options( titlebar: Some(TitlebarOptions { title: None, appears_transparent: true, - traffic_light_position: Some(point(px(8.), px(8.))), + traffic_light_position: Some(point(px(9.5), px(9.5))), }), center: false, focus: false,