From 71e81b16aade92892e1fecad45759fb0b8d31023 Mon Sep 17 00:00:00 2001 From: Ammar Date: Fri, 10 Oct 2025 14:46:27 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Make=20title=20bar=20version=20t?= =?UTF-8?q?ext=20selectable?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Allow users to select and copy the git version text in the title bar. Added user-select: text and cursor: text to TitleText component while keeping user-select: none on the container for other elements. This makes it easier for users to copy version information for bug reports. _Generated with `cmux`_ --- src/components/TitleBar.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/TitleBar.tsx b/src/components/TitleBar.tsx index 12c392760..e2f4dc391 100644 --- a/src/components/TitleBar.tsx +++ b/src/components/TitleBar.tsx @@ -20,6 +20,8 @@ const TitleBarContainer = styled.div` const TitleText = styled.div` font-weight: normal; letter-spacing: 0.5px; + user-select: text; + cursor: text; `; const BuildInfo = styled.div`