display_options::View done

This commit is contained in:
Aleksander
2025-12-20 13:54:09 +01:00
parent e81c3945e6
commit 5462e84995
15 changed files with 370 additions and 151 deletions

View File

@@ -2,7 +2,7 @@ use wgui::{
globals::WguiGlobals,
layout::{Layout, WidgetID},
};
use wlx_common::dash_interface;
use wlx_common::dash_interface::BoxDashInterface;
use crate::frontend::{FrontendTasks, RcFrontend};
@@ -36,7 +36,7 @@ pub struct TabUpdateParams<'a> {
pub globals: &'a WguiGlobals,
pub frontend_tasks: &'a FrontendTasks,
pub layout: &'a mut Layout,
pub interface: &'a mut Box<dyn dash_interface::DashInterface>,
pub interface: &'a mut BoxDashInterface,
}
pub trait Tab {