We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3923ad commit 4327e86Copy full SHA for 4327e86
src/auto_tiler.ts
@@ -685,9 +685,9 @@ export class AutoTiler {
685
return Err('focused window is not attached');
686
}
687
688
- return onto.meta.get_monitor() == win.meta.get_monitor() && onto.workspace_id() == win.workspace_id()
+ return onto.workspace_id() == win.workspace_id()
689
? Ok(onto)
690
- : Err('window is not on the same monitor or workspace');
+ : Err('window is not on the same workspace');
691
692
693
private toggle_orientation_(ext: Ext, focused: ShellWindow): Result<void, string> {
0 commit comments