From fbc7290bcf49e3da016b080b90fe07186f282ad7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 16 Feb 2024 23:42:22 +0100 Subject: [PATCH] appDisplay: Remove shellWorkspaceLaunch() It was deprecated in commit 942758bb308 back in 2019. Part-of: --- js/ui/appDisplay.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index 14b2ab258..cb1a41250 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -3189,18 +3189,6 @@ export const AppIcon = GObject.registerClass({ this.icon.animateZoomOutAtPos(x, y); } - shellWorkspaceLaunch(params) { - let {stack} = new Error(); - log(`shellWorkspaceLaunch is deprecated, use app.open_new_window() instead\n${stack}`); - - params = Params.parse(params, { - workspace: -1, - timestamp: 0, - }); - - this.app.open_new_window(params.workspace); - } - getDragActor() { return this.app.create_icon_texture(Main.overview.dash.iconSize); }