summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2014-05-22 15:44:34 -0400
committerJasper St. Pierre <jstpierre@mecheye.net>2014-05-22 15:47:30 -0400
commitc45f616fdc742a0104708383cb68163b4d0a5146 (patch)
tree0bbfbca2a2d369203bc7a5e2ec83fdd7fcde042e
parent9402691aaadfb38d7b2aa29b9fdda81266b6e9ba (diff)
downloadmutter-c45f616fdc742a0104708383cb68163b4d0a5146.tar.gz
keybindings: Fix code style
-rw-r--r--src/core/keybindings.c34
1 files changed, 20 insertions, 14 deletions
diff --git a/src/core/keybindings.c b/src/core/keybindings.c
index e21f03f0f..1772c253b 100644
--- a/src/core/keybindings.c
+++ b/src/core/keybindings.c
@@ -2516,21 +2516,27 @@ handle_move_to_corner_backend (MetaDisplay *display,
meta_window_get_frame_rect (window, &frame_rect);
meta_window_get_position (window, &orig_x, &orig_y);
- if (xchange) {
- new_x = work_area.x + (to_right ?
- work_area.width - frame_rect.width :
- 0);
- } else {
- new_x = orig_x;
- }
+ if (xchange)
+ {
+ new_x = work_area.x + (to_right ?
+ work_area.width - frame_rect.width :
+ 0);
+ }
+ else
+ {
+ new_x = orig_x;
+ }
- if (ychange) {
- new_y = work_area.y + (to_bottom ?
- work_area.height - frame_rect.height :
- 0);
- } else {
- new_y = orig_y;
- }
+ if (ychange)
+ {
+ new_y = work_area.y + (to_bottom ?
+ work_area.height - frame_rect.height :
+ 0);
+ }
+ else
+ {
+ new_y = orig_y;
+ }
meta_window_move_frame (window,
TRUE,