style fixes for the last commit
This commit is contained in:
parent
a97c876d31
commit
a99fff03c3
@ -867,11 +867,11 @@ 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)) {
|
||||
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");
|
||||
@ -891,8 +891,6 @@ static void parse_move_command(xcb_connection_t *conn, Client *last_focused, con
|
||||
}
|
||||
/* resize_client flushes */
|
||||
resize_client(conn, last_focused);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
static void parse_resize_command(xcb_connection_t *conn, Client *last_focused, const char *command) {
|
||||
|
Loading…
Reference in New Issue
Block a user