Skip to content

Commit

Permalink
fix(moneymanagerex#5392): fix categ delimiter in filter dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
n-stein committed Dec 5, 2022
1 parent a7097f5 commit a2c74d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filtertransdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ void mmFilterTransactionsDialog::mmDoDataToControls(const wxString& json)
Model_Category::Data_Set categs = Model_Category::instance().all();
for (const auto& categ : categs) {
if (categ.CATEGNAME == categ_name) {
regex.Compile(categ_name + _(" ?: ?"));
regex.Compile(categ_name + " ?: ?");
regex.Replace(&s_category, categ_name + delimiter);
break;
}
Expand Down

0 comments on commit a2c74d1

Please sign in to comment.