summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin S.C. Decker <[email protected]>2016-12-29 00:06:19 +0100
committerraveit65 <[email protected]>2017-01-30 08:52:20 +0100
commit5a92d0b24a661e160c98c7ecfaf7da0b043d4ef6 (patch)
tree19ae3b26a75d4ffdbc52127b5cfc80d089788915
parent238373df58d4ba275b7aead36f4d47971fbed18d (diff)
downloadmarco-5a92d0b24a661e160c98c7ecfaf7da0b043d4ef6.tar.bz2
marco-5a92d0b24a661e160c98c7ecfaf7da0b043d4ef6.tar.xz
workspace: switch wrapping behavior for 'classic' and 'toroidal'
-rw-r--r--src/core/workspace.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/core/workspace.c b/src/core/workspace.c
index e2a397a0..dffb1ebf 100644
--- a/src/core/workspace.c
+++ b/src/core/workspace.c
@@ -863,10 +863,10 @@ meta_workspace_get_neighbor (MetaWorkspace *workspace,
case META_WRAP_NONE:
layout.current_col = 0;
break;
- case META_WRAP_TOROIDAL:
+ case META_WRAP_CLASSIC:
layout.current_row = layout.current_row > 0 ? layout.current_row - 1 : layout.rows - 1;
/* fall through */
- case META_WRAP_CLASSIC:
+ case META_WRAP_TOROIDAL:
layout.current_col = layout.cols - 1;
}
/* RIGHT */
@@ -876,10 +876,10 @@ meta_workspace_get_neighbor (MetaWorkspace *workspace,
case META_WRAP_NONE:
layout.current_col = layout.cols - 1;
break;
- case META_WRAP_TOROIDAL:
+ case META_WRAP_CLASSIC:
layout.current_row = layout.current_row < layout.rows - 1 ? layout.current_row + 1 : 0;
/* fall through */
- case META_WRAP_CLASSIC:
+ case META_WRAP_TOROIDAL:
layout.current_col = 0;
}
/* UP */
@@ -889,10 +889,10 @@ meta_workspace_get_neighbor (MetaWorkspace *workspace,
case META_WRAP_NONE:
layout.current_row = 0;
break;
- case META_WRAP_TOROIDAL:
+ case META_WRAP_CLASSIC:
layout.current_col = layout.current_col > 0 ? layout.current_col - 1 : layout.cols - 1;
/* fall through */
- case META_WRAP_CLASSIC:
+ case META_WRAP_TOROIDAL:
layout.current_row = layout.rows - 1;
}
/* DOWN */
@@ -902,10 +902,10 @@ meta_workspace_get_neighbor (MetaWorkspace *workspace,
case META_WRAP_NONE:
layout.current_row = layout.rows - 1;
break;
- case META_WRAP_TOROIDAL:
+ case META_WRAP_CLASSIC:
layout.current_col = layout.current_col < layout.cols - 1 ? layout.current_col + 1 : 0;
/* fall through */
- case META_WRAP_CLASSIC:
+ case META_WRAP_TOROIDAL:
layout.current_row = 0;
}
@@ -919,7 +919,7 @@ meta_workspace_get_neighbor (MetaWorkspace *workspace,
break;
case META_MOTION_RIGHT:
layout.current_col = 0;
- if (wrap == META_WRAP_TOROIDAL)
+ if (wrap == META_WRAP_CLASSIC)
layout.current_row = 0;
break;
case META_MOTION_UP:
@@ -927,7 +927,7 @@ meta_workspace_get_neighbor (MetaWorkspace *workspace,
break;
case META_MOTION_DOWN:
layout.current_row = 0;
- if (wrap == META_WRAP_TOROIDAL)
+ if (wrap == META_WRAP_CLASSIC)
layout.current_col = layout.current_col < layout.cols - 1 ? layout.current_col + 1 : 0;
break;
case META_MOTION_PREV: