Some little style adjustments for badboy’s patch

This commit is contained in:
Michael Stapelberg 2009-09-10 18:48:16 +02:00
parent 40bc7c93d0
commit bf043cd2bd
1 changed files with 4 additions and 7 deletions

View File

@ -909,19 +909,16 @@ void parse_command(xcb_connection_t *conn, const char *command) {
return;
}
char com;
char com = command[1];
if (command[1] == 't') {
if (last_focused->titlebar_position == TITLEBAR_TOP &&
last_focused->borderless == false)
!last_focused->borderless)
com = 'p';
else if (last_focused->titlebar_position == TITLEBAR_OFF &&
last_focused->borderless == false)
!last_focused->borderless)
com = 'b';
else
com = 'n';
else com = 'n';
}
else
com = command[1];
client_change_border(conn, last_focused, com);
return;