From c4eb4b1823d66b754e4aa8e3eb1e04648bc26670 Mon Sep 17 00:00:00 2001 From: Michael Aaron Murphy Date: Fri, 28 Feb 2025 12:04:06 +0100 Subject: [PATCH] fix(about): shorten the width of the hostname input Closes #994 --- cosmic-settings/src/pages/system/about.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/cosmic-settings/src/pages/system/about.rs b/cosmic-settings/src/pages/system/about.rs index 3ac575a..cc98d84 100644 --- a/cosmic-settings/src/pages/system/about.rs +++ b/cosmic-settings/src/pages/system/about.rs @@ -138,6 +138,7 @@ fn device() -> Section { page.editing_device_name, Message::HostnameEdit, ) + .width(250) .on_input(Message::HostnameInput) .on_submit(Message::HostnameSubmit);