MCPcopy Create free account
hub / github.com/LPC4/Full-Stack / apply_settings

Method apply_settings

src/app/settings.rs:6–15  ·  view source on GitHub ↗
(&self, ctx: &egui::Context)

Source from the content-addressed store, hash-verified

4use super::{FullStackApp, chrome, metrics};
5use crate::ui::theme;
6use eframe::egui;
7use serde::{Deserialize, Serialize};
8
9pub(crate) const APP_KEY: &str = "full_stack_settings";
10
11#[derive(Serialize, Deserialize, Clone, Copy, PartialEq, Eq, Debug, Default)]
12pub(crate) enum ZoomLevel {
13 Small,
14 #[default]
15 Medium,
16 Large,
17 ExtraLarge,
18}

Callers 2

newMethod · 0.80
settings_window_uiMethod · 0.80

Calls 5

set_ui_themeFunction · 0.85
apply_ui_themeFunction · 0.85
with_backgroundMethod · 0.80
themeMethod · 0.80
zoomMethod · 0.80

Tested by

no test coverage detected