Remove debug prints
This commit is contained in:
parent
bca1926933
commit
0930535642
1 changed files with 0 additions and 2 deletions
|
|
@ -321,7 +321,6 @@ def minimal_borders(self, all_windows: WindowList) -> Iterator[BorderLine]:
|
|||
needs_borders_map = all_windows.compute_needs_borders_map(lgd.draw_active_borders)
|
||||
active_group = all_windows.active_group
|
||||
mirrored = self.layout_opts.mirrored
|
||||
print(11111111, self.main_is_horizontal)
|
||||
for wg, xl, yl, is_full_size in layouts:
|
||||
if is_full_size:
|
||||
main_layouts.append((wg, xl, yl))
|
||||
|
|
@ -335,7 +334,6 @@ def h(left: int, right: int, top: int, mult: int) -> None:
|
|||
e = Edges(left, top, right, top + bw)
|
||||
perp_borders.append(BorderLine(e, color, mult*wid, True))
|
||||
def v(top: int, bottom: int, left: int, mult: int) -> None:
|
||||
print(f'{left=} {top=} {bottom=} {mult=}')
|
||||
e = Edges(left, top, left + bw, bottom)
|
||||
perp_borders.append(BorderLine(e, color, mult*wid, False))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue