From fce5d668783b4bbd5a6cea5e816d5d90a810d8e6 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Sat, 2 Nov 2024 09:42:46 +0300 Subject: Follow window corner radius in insert hint --- src/layout/tile.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/layout/tile.rs') diff --git a/src/layout/tile.rs b/src/layout/tile.rs index c9347a1d..ddb9bd8c 100644 --- a/src/layout/tile.rs +++ b/src/layout/tile.rs @@ -392,7 +392,7 @@ impl Tile { } /// Returns `None` if the border is hidden and `Some(width)` if it should be shown. - fn effective_border_width(&self) -> Option { + pub fn effective_border_width(&self) -> Option { if self.is_fullscreen { return None; } -- cgit