From be52ad999f4fa42c12cf85d637ef915d93b59de2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sat, 21 Feb 2015 20:09:56 +0100 Subject: [PATCH] dateMenu: Include "Today" button in keynav https://bugzilla.gnome.org/show_bug.cgi?id=706903 --- js/ui/dateMenu.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/ui/dateMenu.js b/js/ui/dateMenu.js index 4316006c4..f3c374d07 100644 --- a/js/ui/dateMenu.js +++ b/js/ui/dateMenu.js @@ -37,6 +37,7 @@ const TodayButton = new Lang.Class({ // until the selected date changes. this.actor = new St.Button({ style_class: 'datemenu-today-button', x_align: St.Align.START, + can_focus: true, reactive: false }); this.actor.connect('clicked', Lang.bind(this, @@ -59,7 +60,7 @@ const TodayButton = new Lang.Class({ function(calendar, date) { // Make the button reactive only if the selected date is not the // current date. - this.actor.can_focus = this.actor.reactive = !_isToday(date) + this.actor.reactive = !_isToday(date) })); },