Skip to content

Commit

Permalink
Merge pull request #4888 from whalley/master
Browse files Browse the repository at this point in the history
fix(#4881): new split rows now binded
  • Loading branch information
whalley committed Jul 29, 2022
2 parents 342f53e + 56c7aaf commit 310d78e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ set(CPACK_DEBIAN_PACKAGE_HOMEPAGE http://www.moneymanagerex.org/)
set(CPACK_DEBIAN_PACKAGE_REPLACES moneymanagerex)
set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON)
set(CPACK_DEBIAN_PACKAGE_RELEASE 1)
set(CPACK_DEBIAN_PACKAGE_DEPENDS wx${wxWidgets_VERSION_MAJOR}.${wxWidgets_VERSION_MINOR}-i18n)
# set(CPACK_DEBIAN_PACKAGE_DEPENDS wx${wxWidgets_VERSION_MAJOR}.${wxWidgets_VERSION_MINOR}-i18n)
set(CPACK_DEBIAN_FILE_NAME DEB-DEFAULT)
set(CPACK_RPM_FILE_NAME RPM-DEFAULT)
set(CPACK_RPM_PACKAGE_LICENSE GPL-2+)
Expand Down
3 changes: 3 additions & 0 deletions contrib.txt
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,9 @@ Michael Keeling
Jose Manuel Marrero León
Marco Giuseppe Stimolo
Emmanouil Mastropetros
Janis Dankowski
Boris Varshavsky
Adjutant Young

### 2021
Renato
Expand Down
1 change: 1 addition & 0 deletions src/splittransactionsdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,7 @@ void mmSplitTransactionDialog::mmDoEnableLineById(int id)
, wxDefaultPosition, wxDefaultSize, wxCHK_2STATE, wxDefaultValidator
, wxString::Format("check_box%i", i));
mmComboBoxCategory* ncbc = new mmComboBoxCategory(slider_, wxID_HIGHEST + i);
ncbc->Bind(wxEVT_CHAR_HOOK, &mmSplitTransactionDialog::OnComboKey, this);
ncb->Disable();
ncb->Hide();
ncbc->SetName(wxString::Format("category_box%i", i));
Expand Down

0 comments on commit 310d78e

Please sign in to comment.