From: Oleg Broytman Date: Thu, 4 Jan 2024 16:23:45 +0000 (+0300) Subject: Feat(wx/search): Get form values X-Git-Tag: 0.3.0~9^2~21 X-Git-Url: https://git.phdru.name/?p=m_librarian.git;a=commitdiff_plain;h=458991dd4c4428336a8f9abd5c4392d483e61a2f Feat(wx/search): Get form values [skip ci] --- 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()