[gnome-shell] layout: fix errors in fallback HotCorner function
- From: Tim Lunn <timl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] layout: fix errors in fallback HotCorner function
- Date: Tue, 5 Mar 2013 06:54:11 +0000 (UTC)
commit 6c3685649921790feb00616f5a840debce3e1d85
Author: Tim Lunn <tim feathertop org>
Date: Tue Mar 5 17:49:35 2013 +1100
layout: fix errors in fallback HotCorner function
js/ui/layout.js | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/js/ui/layout.js b/js/ui/layout.js
index 63d040d..6ca5d84 100644
--- a/js/ui/layout.js
+++ b/js/ui/layout.js
@@ -1112,7 +1112,7 @@ const HotCorner = new Lang.Class({
this._x = x;
this._y = y;
- this._setupFallbackCornerIfNeeded();
+ this._setupFallbackCornerIfNeeded(layoutManager);
this._pressureBarrier = new PressureBarrier(HOT_CORNER_PRESSURE_THRESHOLD,
HOT_CORNER_PRESSURE_TIMEOUT,
@@ -1156,10 +1156,10 @@ const HotCorner = new Lang.Class({
}
},
- _setupFallbackCornerIfNeeded: function() {
+ _setupFallbackCornerIfNeeded: function(layoutManager) {
if (!global.display.supports_extended_barriers()) {
this.actor = new Clutter.Actor({ name: 'hot-corner-environs',
- x: x, y: y,
+ x: this._x, y: this._y,
width: 3,
height: 3,
reactive: true });
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]