diff --git a/egui/src/introspection.rs b/egui/src/introspection.rs index af5d2bff..1aed0565 100644 --- a/egui/src/introspection.rs +++ b/egui/src/introspection.rs @@ -137,7 +137,7 @@ impl Widget for &mut epaint::TessellationOptions { ui.collapsing("debug", |ui| { ui.checkbox( coarse_tessellation_culling, - "Do coarse culling in the tessellator)", + "Do coarse culling in the tessellator", ); ui.checkbox(debug_ignore_clip_rects, "Ignore clip rectangles"); ui.checkbox(debug_paint_clip_rects, "Paint clip rectangles"); diff --git a/egui_demo_lib/src/apps/color_test.rs b/egui_demo_lib/src/apps/color_test.rs index 5eb7e498..cf2f8103 100644 --- a/egui_demo_lib/src/apps/color_test.rs +++ b/egui_demo_lib/src/apps/color_test.rs @@ -37,8 +37,7 @@ impl epi::App for ColorTest { fn update(&mut self, ctx: &egui::CtxRef, frame: &mut epi::Frame<'_>) { egui::CentralPanel::default().show(ctx, |ui| { if frame.is_web() { - ui.colored_label( - RED, + ui.label( "NOTE: The WebGL1 backend without sRGB support does NOT pass the color test.", ); ui.separator(); diff --git a/egui_demo_lib/src/apps/demo/tests.rs b/egui_demo_lib/src/apps/demo/tests.rs index 0261c187..e9adac14 100644 --- a/egui_demo_lib/src/apps/demo/tests.rs +++ b/egui_demo_lib/src/apps/demo/tests.rs @@ -116,10 +116,13 @@ impl super::Demo for ManualLayoutTest { } fn show(&mut self, ctx: &egui::CtxRef, open: &mut bool) { - egui::Window::new(self.name()).open(open).show(ctx, |ui| { - use super::View; - self.ui(ui); - }); + egui::Window::new(self.name()) + .resizable(false) + .open(open) + .show(ctx, |ui| { + use super::View; + self.ui(ui); + }); } }