remember checked settings in memory

This commit is contained in:
Aleksander
2025-11-06 21:12:26 +01:00
parent e087eb3743
commit 433b7f53b5
13 changed files with 136 additions and 69 deletions

View File

@@ -2,6 +2,7 @@ use std::rc::Rc;
use wgui::{
components::button::ComponentButton,
event::CallbackDataCommon,
globals::WguiGlobals,
layout::{Layout, WidgetID},
};
@@ -30,6 +31,7 @@ pub struct TabParams<'a> {
pub layout: &'a mut Layout,
pub parent_id: WidgetID,
pub frontend: &'a RcFrontend,
pub settings: &'a mut crate::settings::Settings,
}
pub trait Tab {