From a42a5ac696bdbed39a990e9e451985dc3ff9d7c9 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Thu, 6 Feb 2025 10:54:48 +0300 Subject: layout: Remove redundant () --- src/layout/scrolling.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/layout') diff --git a/src/layout/scrolling.rs b/src/layout/scrolling.rs index 66fb8e65..e1593251 100644 --- a/src/layout/scrolling.rs +++ b/src/layout/scrolling.rs @@ -3823,7 +3823,7 @@ impl Column { let current_prop = if full == 0. { 1. } else { - (current_tile_px + self.options.gaps) / (full) + (current_tile_px + self.options.gaps) / full }; // FIXME: fix overflows then remove limits. -- cgit