Skip to content

Commit 2fd3ecb

Browse files
committed
fix #1153
1 parent 0c6f0b7 commit 2fd3ecb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Views/Scheduled/ScheduledMonth.vala

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class Views.Scheduled.ScheduledMonth : Gtk.ListBoxRow {
4747

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

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

src/Views/Scheduled/ScheduledRange.vala

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public class Views.Scheduled.ScheduledRange : Gtk.ListBoxRow {
4949

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

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

0 commit comments

Comments
 (0)