diff options
| -rw-r--r-- | src/layout/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/layout/mod.rs b/src/layout/mod.rs index 658d50af..bcafbb89 100644 --- a/src/layout/mod.rs +++ b/src/layout/mod.rs @@ -3794,6 +3794,10 @@ impl<W: LayoutElement> Layout<W> { } } + // Clear it before calling remove_window() to avoid running interactive_move_end() + // in the middle of interactive_move_update() and the confusion that causes. + self.interactive_move = None; + let RemovedTile { mut tile, width, |
