MCPcopy Index your code
hub / github.com/encounter/objdiff / arch_config_window

Function arch_config_window

objdiff-gui/src/views/config.rs:875–885  ·  view source on GitHub ↗
(
    ctx: &egui::Context,
    state: &AppStateRef,
    show: &mut bool,
    appearance: &Appearance,
)

Source from the content-addressed store, hash-verified

873}
874
875pub fn arch_config_window(
876 ctx: &egui::Context,
877 state: &AppStateRef,
878 show: &mut bool,
879 appearance: &Appearance,
880) {
881 let mut state_guard = state.write().unwrap();
882 egui::Window::new("Arch Settings").open(show).show(ctx, |ui| {
883 arch_config_ui(ui, &mut state_guard, appearance);
884 });
885}
886
887fn project_override_badge(ui: &mut egui::Ui) -> egui::Response {
888 ui.add(egui::Label::new(RichText::new("⛭").color(ui.visuals().warn_fg_color)).selectable(false))

Callers 1

updateMethod · 0.85

Calls 2

arch_config_uiFunction · 0.85
writeMethod · 0.45

Tested by

no test coverage detected