[gnome-shell] WorkspaceSwitcherPopup: allow input events to pass through



commit e4976b535d7b36b7040af04761e62fb31cca080c
Author: Rui Matos <tiagomatos gmail com>
Date:   Thu Aug 25 15:46:15 2016 +0200

    WorkspaceSwitcherPopup: allow input events to pass through
    
    There's no particular reason for this actor to be reactive and thus
    preventing input events to reach actors underneath, e.g. quickly
    clicking on something while the popup isn't yet finished animating
    out.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=770382

 js/ui/workspaceSwitcherPopup.js |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)
---
diff --git a/js/ui/workspaceSwitcherPopup.js b/js/ui/workspaceSwitcherPopup.js
index 55da3e5..b0a101a 100644
--- a/js/ui/workspaceSwitcherPopup.js
+++ b/js/ui/workspaceSwitcherPopup.js
@@ -19,8 +19,7 @@ const WorkspaceSwitcherPopup = new Lang.Class({
     Name: 'WorkspaceSwitcherPopup',
 
     _init : function() {
-        this.actor = new St.Widget({ reactive: true,
-                                     x: 0,
+        this.actor = new St.Widget({ x: 0,
                                      y: 0,
                                      width: global.screen_width,
                                      height: global.screen_height,


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]