Skip to content

Commit

Permalink
Merge pull request #6097 from n-stein/fix(#6069)
Browse files Browse the repository at this point in the history
fix(#6069): extend checking panel search field
  • Loading branch information
vomikan committed Jul 11, 2023
2 parents f07aa17 + 092f6e6 commit 8860738
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mmcheckingpanel.cpp
Expand Up @@ -430,7 +430,7 @@ void mmCheckingPanel::CreateControls()
itemPanel12->SetSizer(itemBoxSizer4);

wxBoxSizer* itemButtonsSizer = new wxBoxSizer(wxHORIZONTAL);
itemBoxSizer4->Add(itemButtonsSizer, g_flagsBorder1V);
itemBoxSizer4->Add(itemButtonsSizer, wxSizerFlags(g_flagsExpandBorder1).Proportion(0));

m_btnDelete = new wxButton(itemPanel12, wxID_REMOVE, _("&Delete "));
mmToolTip(m_btnDelete, _("Delete selected transaction"));
Expand Down Expand Up @@ -480,7 +480,7 @@ void mmCheckingPanel::CreateControls()
, wxSize(100, m_btnDelete->GetSize().GetHeight())
, wxTE_NOHIDESEL, wxDefaultValidator);
searchCtrl->SetDescriptiveText(_("Search"));
itemButtonsSizer->Add(searchCtrl, 0, wxCENTER, 1);
itemButtonsSizer->Add(searchCtrl, g_flagsExpandBorder1);
mmToolTip(searchCtrl,
_("Enter any string to find it in the nearest transaction data") + "\n\n" +
_("Tips: You can use wildcard characters - question mark (?), asterisk (*) - in your search criteria.") + "\n" +
Expand Down

0 comments on commit 8860738

Please sign in to comment.