layout: Remove redundant ()

This commit is contained in:
Ivan Molodetskikh
2025-02-06 10:54:48 +03:00
parent b31c0359eb
commit a42a5ac696
+1 -1
View File
@@ -3823,7 +3823,7 @@ impl<W: LayoutElement> Column<W> {
let current_prop = if full == 0. { let current_prop = if full == 0. {
1. 1.
} else { } else {
(current_tile_px + self.options.gaps) / (full) (current_tile_px + self.options.gaps) / full
}; };
// FIXME: fix overflows then remove limits. // FIXME: fix overflows then remove limits.