[gnome-shell] Fix launching apps / search results in new workspaces by dragging
- From: Jasper St. Pierre <jstpierre src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] Fix launching apps / search results in new workspaces by dragging
- Date: Mon, 1 Jul 2013 17:22:19 +0000 (UTC)
commit 5dabaf2fe9201120281dd87bb55f97feae35a58d
Author: Jasper St. Pierre <jstpierre mecheye net>
Date: Sun Jun 16 00:12:22 2013 -0400
Fix launching apps / search results in new workspaces by dragging
When I landed the new workspace tracker move, I didn't realize there
was public API being used by clients here. Add that back.
https://bugzilla.gnome.org/show_bug.cgi?id=698593
js/ui/windowManager.js | 4 ++++
js/ui/workspaceThumbnail.js | 4 ++--
2 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/js/ui/windowManager.js b/js/ui/windowManager.js
index 89ccf69..022cd1e 100644
--- a/js/ui/windowManager.js
+++ b/js/ui/windowManager.js
@@ -479,6 +479,10 @@ const WindowManager = new Lang.Class({
false, -1, 1);
},
+ keepWorkspaceAlive: function(workspace, duration) {
+ this._workspaceTracker.keepWorkspaceAlive(workspace, duration);
+ },
+
setCustomKeybindingHandler: function(name, modes, handler) {
if (Meta.keybindings_set_custom_handler(name, handler))
this.allowKeybinding(name, modes);
diff --git a/js/ui/workspaceThumbnail.js b/js/ui/workspaceThumbnail.js
index 6b631d1..c5cd7e3 100644
--- a/js/ui/workspaceThumbnail.js
+++ b/js/ui/workspaceThumbnail.js
@@ -764,8 +764,8 @@ const ThumbnailsBox = new Lang.Class({
// to open its first window within some time, as tracked by Shell.WindowTracker.
// Here, we only add a very brief timeout to avoid the _immediate_ removal of the
// workspace while we wait for the startup sequence to load.
- Main.keepWorkspaceAlive(global.screen.get_workspace_by_index(newWorkspaceIndex),
- WORKSPACE_KEEP_ALIVE_TIME);
+ Main.wm.keepWorkspaceAlive(global.screen.get_workspace_by_index(newWorkspaceIndex),
+ WORKSPACE_KEEP_ALIVE_TIME);
}
// Start the animation on the workspace (which is actually
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]