From 89d1b5d36b4d6c88fd2127542ccdc9189e40bba2 Mon Sep 17 00:00:00 2001 From: Phillip Tennen Date: Tue, 13 Feb 2024 12:42:09 +0000 Subject: [PATCH] =?UTF-8?q?[libgui=20-=20Rust]=20ScrollView=E2=80=99s=20in?= =?UTF-8?q?terior=20View=20does=20not=20have=20a=20border?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- rust_programs/libgui/src/scroll_view.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rust_programs/libgui/src/scroll_view.rs b/rust_programs/libgui/src/scroll_view.rs index 3b635f11..f241c9f0 100644 --- a/rust_programs/libgui/src/scroll_view.rs +++ b/rust_programs/libgui/src/scroll_view.rs @@ -674,6 +674,7 @@ impl ScrollView { view_frame }; let view = Rc::new(View::new(Color::new(100, 100, 100), sizer)); + view.set_border_enabled(false); //view.set_border_enabled(false); Rc::new(Self { view, layer })