From 2404d2935dc524fce4bdcebb77b25853fd82fb81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 15 Jun 2012 15:49:24 +0200 Subject: [PATCH] workspace: Remove unused method This one hasn't been used for quite a while now ... https://bugzilla.gnome.org/show_bug.cgi?id=678416 --- js/ui/workspace.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/js/ui/workspace.js b/js/ui/workspace.js index a1631a00a..25626fc5e 100644 --- a/js/ui/workspace.js +++ b/js/ui/workspace.js @@ -1121,16 +1121,6 @@ const Workspace = new Lang.Class({ } }, - _showAllOverlays: function() { - let currentWorkspace = global.screen.get_active_workspace(); - for (let i = 0; i < this._windows.length; i++) { - let clone = this._windows[i]; - let overlay = this._windowOverlays[i]; - this._showWindowOverlay(clone, overlay, - this.metaWorkspace == null || this.metaWorkspace == currentWorkspace); - } - }, - _hideAllOverlays: function() { for (let i = 0; i < this._windows.length; i++) { let clone = this._windows[i];