Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/DBus/GalaDBus.vala
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public interface Dock.GalaDBus : Object {
}
}

public static void open_multitaksing_view () requires (proxy != null) {
public static void open_multitasking_view () requires (proxy != null) {
proxy.perform_action.begin (1);
}
}
2 changes: 1 addition & 1 deletion src/WorkspaceSystem/DynamicWorkspaceItem.vala
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class Dock.DynamicWorkspaceIcon : ContainerItem, WorkspaceItem {
var index = WindowSystem.get_default ().active_workspace;

if (index == n_workspaces) {
GalaDBus.open_multitaksing_view ();
GalaDBus.open_multitasking_view ();
return;
}

Expand Down
2 changes: 1 addition & 1 deletion src/WorkspaceSystem/Workspace.vala
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class Dock.Workspace : GLib.Object {

public void activate () {
if (is_active_workspace) {
GalaDBus.open_multitaksing_view ();
GalaDBus.open_multitasking_view ();
} else {
WindowSystem.get_default ().desktop_integration.activate_workspace.begin (index);
}
Expand Down
Loading