settings saving

This commit is contained in:
galister
2026-01-08 03:21:33 +09:00
parent 5f4ab341fe
commit 150e6c4e40
8 changed files with 113 additions and 33 deletions

View File

@@ -178,6 +178,7 @@ impl AppState {
pub struct AppSession {
pub config: GeneralConfig,
pub config_dirty: bool,
#[cfg(feature = "wayvr")]
pub wayvr_config: WayVRConfig, // TODO: rename to "wayland_server_config"
@@ -209,6 +210,7 @@ impl AppSession {
#[cfg(feature = "wayvr")]
wayvr_config,
toast_topics,
config_dirty: false,
}
}
}