messageTray: Move close button above notification widget stack

This allows us to click on the entire close button, not just the part
of it that's unobscured.
This commit is contained in:
Jasper St. Pierre 2012-09-04 19:03:47 -03:00
parent f563fb124e
commit eda17defb2

View File

@ -1204,7 +1204,6 @@ const SummaryItem = new Lang.Class({
this.emit('done-displaying-content');
}));
this.notificationStackWidget.add_actor(this._closeButton);
this.notificationStackView = new St.ScrollView({ style_class: source.isChat ? '' : 'summary-notification-stack-scrollview',
vscrollbar_policy: source.isChat ? Gtk.PolicyType.NEVER : Gtk.PolicyType.AUTOMATIC,
hscrollbar_policy: Gtk.PolicyType.NEVER });
@ -1213,6 +1212,7 @@ const SummaryItem = new Lang.Class({
vertical: true });
this.notificationStackView.add_actor(this.notificationStack);
this.notificationStackWidget.add_actor(this.notificationStackView);
this.notificationStackWidget.add_actor(this._closeButton);
this._stackedNotifications = [];
this._oldMaxScrollAdjustment = 0;