[gnome-shell/wip/fmuellner/notification-redux: 14/128] dateMenu: Swap columns around
- From: Florian Müllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/wip/fmuellner/notification-redux: 14/128] dateMenu: Swap columns around
- Date: Tue, 17 Feb 2015 11:20:50 +0000 (UTC)
commit 17cd4536532c0b5536096811e3df94be4851eadc
Author: Florian Müllner <fmuellner gnome org>
Date: Fri Jan 30 05:56:28 2015 +0100
dateMenu: Swap columns around
js/ui/dateMenu.js | 34 +++++++++++++++++-----------------
1 files changed, 17 insertions(+), 17 deletions(-)
---
diff --git a/js/ui/dateMenu.js b/js/ui/dateMenu.js
index 341c78f..3399cf7 100644
--- a/js/ui/dateMenu.js
+++ b/js/ui/dateMenu.js
@@ -110,11 +110,27 @@ const DateMenuButton = new Lang.Class({
this.menu.box.add_child(hbox);
// Fill up the first column
+ this._messageList = new Calendar.MessageList();
+ hbox.add(this._messageList.actor, { expand: true, y_fill: false, y_align: St.Align.START });
+ // Whenever the menu is opened, select today
+ this.menu.connect('open-state-changed', Lang.bind(this, function(menu, isOpen) {
+ if (isOpen) {
+ let now = new Date();
+ this._calendar.setDate(now);
+ this._date.setDate(now);
+ }
+ }));
+
+ this._separator = new St.DrawingArea({ style_class: 'calendar-vertical-separator',
+ pseudo_class: 'highlighted' });
+ this._separator.connect('repaint', Lang.bind(this, _onVertSepRepaint));
+ hbox.add(this._separator);
+
+ // Fill up the second column
vbox = new St.BoxLayout({vertical: true});
hbox.add(vbox);
- this._messageList = new Calendar.MessageList();
this._calendar = new Calendar.Calendar();
// Date
@@ -152,22 +168,6 @@ const DateMenuButton = new Lang.Class({
this._dateAndTimeSeparator = separator;
}
- this._separator = new St.DrawingArea({ style_class: 'calendar-vertical-separator',
- pseudo_class: 'highlighted' });
- this._separator.connect('repaint', Lang.bind(this, _onVertSepRepaint));
- hbox.add(this._separator);
-
- // Fill up the second column
- hbox.add(this._messageList.actor, { expand: true, y_fill: false, y_align: St.Align.START });
-
- // Whenever the menu is opened, select today
- this.menu.connect('open-state-changed', Lang.bind(this, function(menu, isOpen) {
- if (isOpen) {
- let now = new Date();
- this._calendar.setDate(now);
- this._date.setDate(now);
- }
- }));
// Done with hbox for calendar and event list
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]