From c49561255e722881d0269a314d2f2dfec4e1e5d8 Mon Sep 17 00:00:00 2001 From: Michael Schimmel Date: Wed, 18 Feb 2026 21:54:22 +0100 Subject: [PATCH] Refactor code editor layout configuration Move the `.frame(false)` call to after `.desired_width(f32::INFINITY)` for better readability. --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 8d681b5..66c519d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -491,8 +491,8 @@ impl eframe::App for CompilerApp { .hint_text("Ready to compile...") .code_editor() .lock_focus(false) - .frame(false) - .desired_width(f32::INFINITY), + .desired_width(f32::INFINITY) + .frame(false), ); }); }