[gnome-shell] Revert "Add Ctrl+PageUp/PageDown key shortcuts for switching tabs"



commit d23c3743265b839b0579fe43399c2e572ced2c08
Author: Jasper St. Pierre <jstpierre mecheye net>
Date:   Fri Oct 21 14:50:03 2011 -0400

    Revert "Add Ctrl+PageUp/PageDown key shortcuts for switching tabs"
    
    This reverts commit a69ebc8a68e52ffcf1b746b3be15cc619c8b1110.
    
    This was accidentally the old change.

 js/ui/lookingGlass.js |   19 -------------------
 1 files changed, 0 insertions(+), 19 deletions(-)
---
diff --git a/js/ui/lookingGlass.js b/js/ui/lookingGlass.js
index 13ec758..6ac5247 100644
--- a/js/ui/lookingGlass.js
+++ b/js/ui/lookingGlass.js
@@ -151,16 +151,6 @@ Notebook.prototype = {
             return;
         let vAdjust = tabData.scrollView.vscroll.adjustment;
         vAdjust.value = vAdjust.upper - vAdjust.page_size;
-    },
-
-    nextTab: function() {
-            let nextIndex = this._selectedIndex < this._tabs.length - 1 ? this._selectedIndex + 1 : this._selectedIndex;
-            this.selectIndex(nextIndex);
-    },
-
-    prevTab: function() {
-            let nextIndex = this._selectedIndex > 0 ? this._selectedIndex - 1 : 0;
-            this.selectIndex(nextIndex);
     }
 };
 Signals.addSignalMethods(Notebook.prototype);
@@ -1005,7 +995,6 @@ LookingGlass.prototype = {
     // Handle key events which are relevant for all tabs of the LookingGlass
     _globalKeyPressEvent : function(actor, event) {
         let symbol = event.get_key_symbol();
-        let modifierState = Shell.get_event_state(event);
         if (symbol == Clutter.Escape) {
             if (this._objInspector.actor.visible) {
                 this._objInspector.close();
@@ -1014,14 +1003,6 @@ LookingGlass.prototype = {
             }
             return true;
         }
-        // Ctrl+PgUp and Ctrl+PgDown switches tabs in the notebook view
-        if (modifierState & Clutter.ModifierType.CONTROL_MASK) {
-            if (symbol == Clutter.KEY_Page_Up) {
-                this._notebook.nextTab();
-            } else if (symbol == Clutter.KEY_Page_Down) {
-                this._notebook.prevTab();
-            }
-        }
         return false;
     },
 



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