From c544d49b7907cc914678b965977648f681e2b623 Mon Sep 17 00:00:00 2001 From: Lawrence Chen Date: Mon, 23 Mar 2026 19:54:18 -0700 Subject: [PATCH 1/2] Shift titlebar folder icon left --- Sources/ContentView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/ContentView.swift b/Sources/ContentView.swift index d76c2359..d650c439 100644 --- a/Sources/ContentView.swift +++ b/Sources/ContentView.swift @@ -2465,6 +2465,7 @@ struct ContentView: View { // Draggable folder icon + focused command name if let directory = focusedDirectory { DraggableFolderIcon(directory: directory) + .padding(.leading, -7) } Text(titlebarText) From 7f1e8835fe51624ad756cdc4974c003cfc72c637 Mon Sep 17 00:00:00 2001 From: Lawrence Chen Date: Mon, 23 Mar 2026 23:06:10 -0700 Subject: [PATCH 2/2] Nudge titlebar folder icon right by 1px --- Sources/ContentView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/ContentView.swift b/Sources/ContentView.swift index d650c439..57706817 100644 --- a/Sources/ContentView.swift +++ b/Sources/ContentView.swift @@ -2465,7 +2465,7 @@ struct ContentView: View { // Draggable folder icon + focused command name if let directory = focusedDirectory { DraggableFolderIcon(directory: directory) - .padding(.leading, -7) + .padding(.leading, -6) } Text(titlebarText)