Skip to content
Snippets Groups Projects
Commit 17bcabee authored by Robert Goldmann's avatar Robert Goldmann
Browse files

Fixed #112 - combobox repeatMonthDay is one day off

parent 08c45f9d
No related branches found
No related tags found
1 merge request!142merge v1_3_0 into master
......@@ -192,7 +192,7 @@ public class NewPaymentController
checkBoxRepeat.setSelected(true);
radioButtonDay.setSelected(true);
toggleRepeatingArea(true);
comboBoxRepeatingDay.getSelectionModel().select(currentPayment.getRepeatMonthDay());
comboBoxRepeatingDay.getSelectionModel().select(currentPayment.getRepeatMonthDay()-1);
}
if(currentPayment.getRepeatEndDate() != null)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment