From c3038e6181ab1ccc50a82d9058a3e40d7dc6fe0a Mon Sep 17 00:00:00 2001 From: onysd Date: Tue, 28 Jul 2026 06:04:23 +0300 Subject: [PATCH] message fix --- tui-panel/server-panel.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tui-panel/server-panel.py b/tui-panel/server-panel.py index f8e37eaa..eaff6d4c 100644 --- a/tui-panel/server-panel.py +++ b/tui-panel/server-panel.py @@ -836,10 +836,9 @@ class MainScreen(Screen): # escape sequence that most modern terminal emulators (Windows # Terminal, iTerm2, kitty, alacritty, WezTerm, ...) intercept and # copy straight into the *local* client's clipboard, even across - # SSH. There's no way to confirm from here whether the terminal - # actually supports it, so the message says "sent", not "copied". + # SSH. self.app.copy_to_clipboard(widget.value) - self.notify(f"{widget.label} sent to terminal clipboard (OSC 52) -- works if your terminal supports it") + self.notify(f"{widget.label} copied to clipboard") def on_mount(self) -> None: self.query_one("#services-table", DataTable).add_columns("Service", "Type", "Status")