dateMenu: Include "Today" button in keynav

https://bugzilla.gnome.org/show_bug.cgi?id=706903
This commit is contained in:
Florian Müllner 2015-02-21 20:09:56 +01:00
parent 5a47ad837b
commit be52ad999f

View File

@ -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)
}));
},