From 7a937efd9170b9eab75d238997396c8c2c742b38 Mon Sep 17 00:00:00 2001 From: Fabio Scaccabarozzi Date: Mon, 27 Oct 2025 23:09:21 +0000 Subject: [PATCH] Remove read-only markers from tray application The tray application is display-only and doesn't allow users to change any settings. Therefore, showing (read-only) markers doesn't provide value since all fields are implicitly read-only in this context. Changed to_string_with_readonly_info() back to to_string_with_padding() for the tray display. Addresses PR #14 review comment from @LennardKittner --- src/status_tray.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status_tray.rs b/src/status_tray.rs index bdf09c0..0d7de69 100644 --- a/src/status_tray.rs +++ b/src/status_tray.rs @@ -23,7 +23,7 @@ impl TrayHandler { device_state.device_name.clone(), ), Some(true) => ( - device_state.to_string_with_readonly_info(0), + device_state.to_string_with_padding(0), device_state.device_name.clone(), ), };