From 51ccdf7caa8561a53e98da4812f2e7e0b6b1f3cf Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Thu, 30 Apr 2026 18:49:10 +0900 Subject: [PATCH] feat: version tooltip --- dzgui/views/components/right_panel.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dzgui/views/components/right_panel.py b/dzgui/views/components/right_panel.py index f421369..a0566fc 100644 --- a/dzgui/views/components/right_panel.py +++ b/dzgui/views/components/right_panel.py @@ -40,6 +40,7 @@ class RightPanel(Gtk.Box): self.copying = False + # TODO: strings version = self.controller.get_prefs().version self.version_label = Gtk.Label( label=version, @@ -47,6 +48,7 @@ class RightPanel(Gtk.Box): vexpand=True, halign=Gtk.Align.END, valign=Gtk.Align.END, + tooltip_text="Click to copy to clipboard", ) eb = Gtk.EventBox(halign=Gtk.Align.END, valign=Gtk.Align.END) eb.add(self.version_label)