diff options
| author | bakkeby <[email protected]> | 2020-10-11 11:55:15 +0200 |
|---|---|---|
| committer | bakkeby <[email protected]> | 2020-10-11 11:55:15 +0200 |
| commit | 81ae102bb9ca83935d59661ba7271e1d4e721090 (patch) | |
| tree | b694f4ee438901ee11e3621b4aa1e6cdfe37e3e4 | |
| parent | 1266f4970723fc90f413a48529a60cde9f7142dc (diff) | |
| download | dwm-flexipatch-81ae102bb9ca83935d59661ba7271e1d4e721090.tar.gz dwm-flexipatch-81ae102bb9ca83935d59661ba7271e1d4e721090.zip | |
savefloats: set the _IS_FLOATING property also when restoring float position
| -rw-r--r-- | dwm.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -3694,9 +3694,7 @@ togglefloating(const Arg *arg) if (c->sfx != -9999) { /* restore last known float dimensions */ resize(c, c->sfx, c->sfy, c->sfw, c->sfh, 0); - arrange(c->mon); - return; - } + } else #endif // SAVEFLOATS_PATCH // EXRESIZE_PATCH resize(c, c->x, c->y, c->w, c->h, 0); #if SAVEFLOATS_PATCH || EXRESIZE_PATCH |
