diff --git a/plate-tool-eframe/src/app.rs b/plate-tool-eframe/src/app.rs index b7b8269..f9d06b0 100644 --- a/plate-tool-eframe/src/app.rs +++ b/plate-tool-eframe/src/app.rs @@ -103,21 +103,21 @@ impl eframe::App for PlateToolEframe { }); ui.menu_button("Options", |ui| { ui.menu_button("Styles", |ui| { - ui.checkbox( + ui.toggle_value( &mut self .main_window_state .plate_display_options .show_transfer_hashes, "Toggle transfer hashes", ); - ui.checkbox( + ui.toggle_value( &mut self .main_window_state .plate_display_options .show_volume_heatmap, "Toggle volume heatmap", ); - ui.checkbox( + ui.toggle_value( &mut self .main_window_state .plate_display_options