diff options
Diffstat (limited to 'src/layout/scrolling.rs')
| -rw-r--r-- | src/layout/scrolling.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/layout/scrolling.rs b/src/layout/scrolling.rs index b7b7b84a..5b13d0c6 100644 --- a/src/layout/scrolling.rs +++ b/src/layout/scrolling.rs @@ -783,6 +783,7 @@ impl<W: LayoutElement> ScrollingSpace<W> { &mut self, right_of: &W::Id, tile: Tile<W>, + activate: bool, width: ColumnWidth, is_full_width: bool, ) { @@ -793,9 +794,6 @@ impl<W: LayoutElement> ScrollingSpace<W> { .unwrap(); let col_idx = right_of_idx + 1; - // Activate the new window if right_of was active. - let activate = self.active_column_idx == right_of_idx; - self.add_tile(Some(col_idx), tile, activate, width, is_full_width, None); } |
