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
This commit is contained in:
Fabio Scaccabarozzi
2025-10-27 23:09:21 +00:00
parent 84bbc4a122
commit 7a937efd91

View File

@@ -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(),
),
};