Do not show scratchpad windows after 'move to position'

Fixes #3832
This commit is contained in:
Orestis Floros
2019-10-15 18:40:59 +03:00
parent a638e0408e
commit b48ff2c5ec
2 changed files with 21 additions and 0 deletions

View File

@ -492,6 +492,11 @@ void floating_raise_con(Con *con) {
*
*/
bool floating_maybe_reassign_ws(Con *con) {
if (con_is_internal(con_get_workspace(con))) {
DLOG("Con in an internal workspace\n");
return false;
}
Output *output = get_output_from_rect(con->rect);
if (!output) {