summaryrefslogtreecommitdiffstats
path: root/extensions/vertical-workspaces/iconGrid.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-08 16:02:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-08 16:02:14 +0000
commit52f118cd4c2fbdd81a6ef463835a20cb3d6a3667 (patch)
tree0904907fa04c7c1fe36fe8cdefab7e27b477723a /extensions/vertical-workspaces/iconGrid.js
parentUpdating multi-monitors-add-on to version 26 [d8ea040]. (diff)
downloadgnome-shell-extensions-extra-52f118cd4c2fbdd81a6ef463835a20cb3d6a3667.tar.xz
gnome-shell-extensions-extra-52f118cd4c2fbdd81a6ef463835a20cb3d6a3667.zip
Updating vertical-workspaces to version 28 [891a8df].
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'extensions/vertical-workspaces/iconGrid.js')
-rw-r--r--extensions/vertical-workspaces/iconGrid.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/extensions/vertical-workspaces/iconGrid.js b/extensions/vertical-workspaces/iconGrid.js
deleted file mode 100644
index 2b93efd..0000000
--- a/extensions/vertical-workspaces/iconGrid.js
+++ /dev/null
@@ -1,26 +0,0 @@
-/**
- * Vertical Workspaces
- * iconGrid.js
- *
- * @author GdH <G-dH@github.com>
- * @copyright 2022 - 2023
- * @license GPL-3.0
- *
- */
-
-'use strict';
-
-// ------------------ IconGrid - override -------------------------------------------------------------------------
-
-// workaround - silence page -2 error on gnome 43 during cleaning appgrid
-
-var IconGrid = {
- getItemsAtPage: function(page) {
- if (page < 0 || page > this.nPages)
- return [];
- //throw new Error(`Page ${page} does not exist at IconGrid`);
-
- const layoutManager = this.layout_manager;
- return layoutManager.getItemsAtPage(page);
- }
-} \ No newline at end of file