From 3df33ec3e17dec412ff32c1eb833ee86125497a2 Mon Sep 17 00:00:00 2001 From: SNoiraud Date: Tue, 28 Dec 2021 10:25:41 +0100 Subject: [PATCH] Calendar gramplet: add day names The first day is define according on the LANG Fixes #12515 --- gramps/plugins/gramplet/calendargramplet.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gramps/plugins/gramplet/calendargramplet.py b/gramps/plugins/gramplet/calendargramplet.py index 73d841b86..96a9a09a5 100644 --- a/gramps/plugins/gramplet/calendargramplet.py +++ b/gramps/plugins/gramplet/calendargramplet.py @@ -50,6 +50,7 @@ class CalendarGramplet(Gramplet): self.gui.calendar.connect('day-selected-double-click', self.double_click) self.gui.calendar.set_display_options( + Gtk.CalendarDisplayOptions.SHOW_DAY_NAMES | Gtk.CalendarDisplayOptions.SHOW_HEADING) self.gui.get_container_widget().remove(self.gui.textview) vbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)