[gnome-shell] messageTray: Remove the message tray hot corner
- From: Owen Taylor <otaylor src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] messageTray: Remove the message tray hot corner
- Date: Tue, 21 Aug 2012 22:28:00 +0000 (UTC)
commit 46b7a95ec8856b13888f560b878735c529a22d30
Author: Owen W. Taylor <otaylor fishsoup net>
Date: Tue Aug 21 13:40:23 2012 -0400
messageTray: Remove the message tray hot corner
Since dwell at the bottom of the screen is now the primary way of
summoning the tray, removing the hot corner to avoid having two
separate things that can be accidentally triggered.
https://bugzilla.gnome.org/show_bug.cgi?id=682310
js/ui/messageTray.js | 20 --------------------
1 files changed, 0 insertions(+), 20 deletions(-)
---
diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js
index 2a44d59..7d9afb7 100644
--- a/js/ui/messageTray.js
+++ b/js/ui/messageTray.js
@@ -1450,14 +1450,6 @@ const MessageTray = new Lang.Class({
fadeFactor: 0.2
});
- this._corner = new Clutter.Rectangle({ width: 1,
- height: 1,
- opacity: 0,
- reactive: true });
- this._corner.connect('enter-event', Lang.bind(this, this._onCornerEnter));
- Main.layoutManager.trayBox.add_actor(this._corner);
- Main.layoutManager.trackChrome(this._corner);
-
Main.layoutManager.trayBox.add_actor(this.actor);
this.actor.y = 0;
Main.layoutManager.trackChrome(this.actor);
@@ -1537,11 +1529,6 @@ const MessageTray = new Lang.Class({
}
},
- _onCornerEnter: function(actor, event) {
- this._traySummoned = true;
- this._updateState();
- },
-
_onStyleChanged: function() {
let monitor = Main.layoutManager.bottomMonitor;
@@ -1549,13 +1536,6 @@ const MessageTray = new Lang.Class({
this._notificationWidget.x = Math.floor((monitor.width - width) / 2);
this._summaryBin.x = 0;
this._summaryBin.width = monitor.width;
-
- if (Clutter.get_default_text_direction() == Clutter.TextDirection.RTL)
- this._corner.x = 0;
- else
- this._corner.x = Main.layoutManager.trayBox.width - 1;
-
- this._corner.y = Main.layoutManager.trayBox.height - 1;
},
contains: function(source) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]