Skip to content

Commit

Permalink
fix(Schedule): month from iso to gtkcalendar
Browse files Browse the repository at this point in the history
  • Loading branch information
GeopJr committed Dec 17, 2024
1 parent 9ff78a8 commit 9dddc4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Dialogs/Composer/Schedule.vala
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class Tuba.Dialogs.Schedule : Adw.Dialog {
seconds_spin_button.value = (double) iso8601_datetime.get_second ();

calendar.year = iso8601_datetime.get_year ();
calendar.day = iso8601_datetime.get_month ();
calendar.month = iso8601_datetime.get_month () - 1;
calendar.day = iso8601_datetime.get_day_of_month ();
}

Expand Down

0 comments on commit 9dddc4d

Please sign in to comment.