Added missing newlines in log statements.
This commit is contained in:
@ -729,12 +729,12 @@ static bool _con_move_to_con(Con *con, Con *target, bool behind_focused, bool fi
|
||||
/* Prevent moving if this would violate the fullscreen focus restrictions. */
|
||||
Con *target_ws = con_get_workspace(target);
|
||||
if (!con_fullscreen_permits_focusing(target_ws)) {
|
||||
LOG("Cannot move out of a fullscreen container");
|
||||
LOG("Cannot move out of a fullscreen container.\n");
|
||||
return false;
|
||||
}
|
||||
|
||||
if (con_is_floating(con)) {
|
||||
DLOG("Using FLOATINGCON instead\n");
|
||||
DLOG("Container is floating, using parent instead.\n");
|
||||
con = con->parent;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user