messageTray: fix notification/keyboard interaction

If the pointer moves from the notification into the keyboard, don't
treat that as moving out of the tray.

https://bugzilla.gnome.org/show_bug.cgi?id=658603
This commit is contained in:
Dan Winship
2011-09-09 10:56:51 -04:00
parent a8fdcffd44
commit 33094b4988
2 changed files with 25 additions and 2 deletions

View File

@ -45,7 +45,9 @@ LayoutManager.prototype = {
this.trayBox.connect('allocation-changed',
Lang.bind(this, this._updateTrayBarrier));
this.keyboardBox = new St.BoxLayout({ name: 'keyboardBox' });
this.keyboardBox = new St.BoxLayout({ name: 'keyboardBox',
reactive: true,
track_hover: true });
this.addChrome(this.keyboardBox, { visibleInFullscreen: true });
this._keyboardHeightNotifyId = 0;