Skip to content

Commit

Permalink
fix #1153
Browse files Browse the repository at this point in the history
  • Loading branch information
alainm23 committed Mar 23, 2024
1 parent 0c6f0b7 commit 2fd3ecb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Views/Scheduled/ScheduledMonth.vala
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class Views.Scheduled.ScheduledMonth : Gtk.ListBoxRow {

items = new Gee.HashMap <string, Layouts.ItemRow> ();

var month_label = new Gtk.Label (date.format ("%OB").up (1) + date.format ("%OB").substring (1)) {
var month_label = new Gtk.Label (date.format ("%OB")) {
halign = Gtk.Align.START
};

Expand Down
2 changes: 1 addition & 1 deletion src/Views/Scheduled/ScheduledRange.vala
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class Views.Scheduled.ScheduledRange : Gtk.ListBoxRow {

items = new Gee.HashMap <string, Layouts.ItemRow> ();

var month_label = new Gtk.Label (start_date.format ("%B").up (1) + start_date.format ("%B").substring (1)) {
var month_label = new Gtk.Label (start_date.format ("%B")) {
halign = Gtk.Align.START
};

Expand Down

0 comments on commit 2fd3ecb

Please sign in to comment.