From 8acd359028796e91d24a24437ac67b5288d1ef66 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Thu, 18 Sep 2025 20:00:15 +0900 Subject: [PATCH] chore: update comments --- helpers/ui.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/helpers/ui.py b/helpers/ui.py index 3f9879b..dc1f64f 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -3541,7 +3541,9 @@ class EntryDialog(GenericDialog): super().__init__(text, mode) """ - Returns user input as a string or None + Wraps Gtk.Entry in a dialog and provides basic response handling. + Returns user input as a string or None. + The Entry widget itself can be manipulated via the get_entry() method. """ self.dialog = GenericDialog(text, mode)