From a03971ce7021983611b2db623fdb3d940cf300b9 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Thu, 18 Sep 2025 19:59:51 +0900 Subject: [PATCH] feat: add get_entry() to EntryDialog --- helpers/ui.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/helpers/ui.py b/helpers/ui.py index 1b63dfe..3f9879b 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -3594,6 +3594,9 @@ class EntryDialog(GenericDialog): label = button.get_label() call_bash_func("Open link", label) + def get_entry(self) -> Gtk.Entry: + return self.user_entry + def get_input(self) -> str | None: self.dialog.show_all()