window.c: Move misplaced break to where it belongs
authorKristian Høgsberg <krh@bitplanet.net>
Tue, 6 Nov 2012 01:20:53 +0000 (20:20 -0500)
committerKristian Høgsberg <krh@bitplanet.net>
Tue, 6 Nov 2012 01:24:32 +0000 (20:24 -0500)
The break statement wasn't copy and pasted along with the rest of the code
causing menu item before it ("Move to workspace below") to fall through to
the fullscreen case.

clients/window.c

index fe968ed..ddd8bca 100644 (file)
@@ -1779,12 +1779,12 @@ frame_menu_func(struct window *window, int index, void *data)
                        workspace_manager_move_surface(display->workspace_manager,
                                                       window->surface,
                                                       display->workspace + 1);
+               break;
        case 3: /* fullscreen */
                /* we don't have a way to get out of fullscreen for now */
                if (window->fullscreen_handler)
                        window->fullscreen_handler(window, window->user_data);
                break;
-               break;
        }
 }