Merge pull request #3833 from orestisfl/move-to-position+scratchpad

Do not show scratchpad windows after 'move to position'
This commit is contained in:
Ingo Bürk
2019-10-16 09:06:05 +02:00
committed by GitHub
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) {