From: Michael Stapelberg Date: Sat, 17 Apr 2010 21:18:04 +0000 (+0200) Subject: style fixes for the last commit X-Git-Tag: 4.0~80 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a99fff03c3144792d06d64a14221ebb5384f230c;p=i3%2Fi3 style fixes for the last commit --- diff --git a/src/commands.c b/src/commands.c index 0f970e9d..6742a469 100644 --- a/src/commands.c +++ b/src/commands.c @@ -867,32 +867,30 @@ static void next_previous_workspace(xcb_connection_t *conn, int direction) { } static void parse_move_command(xcb_connection_t *conn, Client *last_focused, const char *command) { - int first, second; - resize_orientation_t orientation = O_VERTICAL; - Container *con = last_focused->container; - Workspace *ws = last_focused->workspace; - if (client_is_floating(last_focused)) { - DLOG("Moving a floating client\n"); - if (STARTS_WITH(command, "left")) { - command += strlen("left"); - last_focused->rect.x -= atoi(command); - } else if (STARTS_WITH(command, "right")) { - command += strlen("right"); - last_focused->rect.x += atoi(command); - } else if (STARTS_WITH(command, "top")) { - command += strlen("top"); - last_focused->rect.y -= atoi(command); - } else if (STARTS_WITH(command, "bottom")) { - command += strlen("bottom"); - last_focused->rect.y += atoi(command); - } else { - ELOG("Syntax: move \n"); - return; - } - /* resize_client flushes */ - resize_client(conn, last_focused); + if (!client_is_floating(last_focused)) { + LOG("You can only move floating clients with the \"move\" command\n"); + return; + } + + DLOG("Moving a floating client\n"); + if (STARTS_WITH(command, "left")) { + command += strlen("left"); + last_focused->rect.x -= atoi(command); + } else if (STARTS_WITH(command, "right")) { + command += strlen("right"); + last_focused->rect.x += atoi(command); + } else if (STARTS_WITH(command, "top")) { + command += strlen("top"); + last_focused->rect.y -= atoi(command); + } else if (STARTS_WITH(command, "bottom")) { + command += strlen("bottom"); + last_focused->rect.y += atoi(command); + } else { + ELOG("Syntax: move \n"); return; } + /* resize_client flushes */ + resize_client(conn, last_focused); } static void parse_resize_command(xcb_connection_t *conn, Client *last_focused, const char *command) {