Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
abey79 committed Nov 5, 2024
1 parent e9f37f0 commit e0c13e2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion crates/viewer/re_viewer/src/ui/rerun_menu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use egui::NumExt as _;

use re_ui::{UICommand, UiExt as _};
use re_ui::UICommand;
use re_viewer_context::StoreContext;

use crate::App;
Expand Down Expand Up @@ -324,6 +324,8 @@ fn backend_menu_ui(

#[cfg(debug_assertions)]
fn egui_debug_options_ui(ui: &mut egui::Ui) {
use re_ui::UiExt as _;

let mut debug = ui.style().debug;
let mut any_clicked = false;

Expand Down Expand Up @@ -366,6 +368,8 @@ fn debug_menu_options_ui(
app_options: &mut re_viewer_context::AppOptions,
command_sender: &CommandSender,
) {
use re_ui::UiExt as _;

#[cfg(not(target_arch = "wasm32"))]
{
if ui.button("Mobile size").clicked() {
Expand Down

0 comments on commit e0c13e2

Please sign in to comment.