Skip to content

Commit

Permalink
Merge pull request moneymanagerex#6899 from ovari/fix(moneymanagerex#…
Browse files Browse the repository at this point in the history
…6898)-Drop-down-remove-colon

fix(moneymanagerex#6898): Drop down remove colons
  • Loading branch information
whalley authored Nov 29, 2024
2 parents f078d77 + 855100c commit a1e2745
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mmreportspanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -354,8 +354,8 @@ void mmReportsPanel::CreateControls()
itemBoxSizerHeader->Add(itemStaticTextH1, 0, wxALL | wxALIGN_CENTER_VERTICAL, 1);
itemBoxSizerHeader->AddSpacer(5);
m_accounts = new wxChoice(itemPanel3, ID_CHOICE_ACCOUNTS);
m_accounts->Append(_("All Accounts:"));
m_accounts->Append(_("Specific Accounts:"));
m_accounts->Append(_("All Accounts"));
m_accounts->Append(_("Specific Accounts"));
for (const auto& e : Model_Account::TYPE_CHOICES)
{
if (e.first != Model_Account::TYPE_ID_INVESTMENT) {
Expand Down

0 comments on commit a1e2745

Please sign in to comment.