From 64c8b905c442eef727b3e05f41071d2ffba1d85d Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Fri, 24 Jul 2026 02:00:18 +0900 Subject: [PATCH] chore: add comments --- dzgui/views/components/buttons.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dzgui/views/components/buttons.py b/dzgui/views/components/buttons.py index b3299a4..8674820 100644 --- a/dzgui/views/components/buttons.py +++ b/dzgui/views/components/buttons.py @@ -105,6 +105,7 @@ class ClipboardButton(IconTextButton): self.controller = controller self.connect("clicked", self._on_button_clicked, func) + # TODO: strings self.set_tooltip_text("Copy to clipboard") def _on_button_clicked(self, button: Self, func: Callable) -> None: @@ -123,6 +124,7 @@ class CopyIpButton(ClipboardButton): def __init__(self, controller: Union["Controller", None], func: Callable) -> None: super().__init__(controller, func) + # TODO: strings self.set_tooltip_text("Copy IP to clipboard")