Fix #2752
This commit is contained in:
parent
27b6517594
commit
5c7471910d
1 changed files with 3 additions and 1 deletions
|
|
@ -404,7 +404,9 @@ def remove_all_biases(self) -> bool:
|
|||
return True
|
||||
|
||||
def window_independent_borders(self, all_windows: WindowList) -> Generator[Edges, None, None]:
|
||||
if not lgd.draw_minimal_borders:
|
||||
groups = tuple(all_windows.iter_all_layoutable_groups())
|
||||
window_count = len(groups)
|
||||
if not lgd.draw_minimal_borders or window_count < 2:
|
||||
return
|
||||
for pair in self.pairs_root.self_and_descendants():
|
||||
if pair.between_border is not None:
|
||||
|
|
|
|||
Loading…
Reference in a new issue