From 458991dd4c4428336a8f9abd5c4392d483e61a2f Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Thu, 4 Jan 2024 19:23:45 +0300 Subject: [PATCH] Feat(wx/search): Get form values [skip ci] --- m_librarian/wx/SearchPanel.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/m_librarian/wx/SearchPanel.py b/m_librarian/wx/SearchPanel.py index 6a29ad7..26fb666 100644 --- a/m_librarian/wx/SearchPanel.py +++ b/m_librarian/wx/SearchPanel.py @@ -37,4 +37,6 @@ class SearchPanel(wx.Panel): search_authors_button.Bind(wx.EVT_BUTTON, self.SearchAuthors) def SearchAuthors(self, event): - pass + search_authors = self.search_authors.GetValue() + search_substr = self.search_substr.GetSelection() + search_case = self.search_case.GetValue() -- 2.39.2