fix build without wayvr feature

This commit is contained in:
galister
2025-12-10 15:39:50 +09:00
parent 5a3ae02910
commit c6aa84f6cb
2 changed files with 13 additions and 8 deletions

View File

@@ -15,20 +15,21 @@ use wgui::{
widget::EventResult,
};
#[cfg(feature = "wayvr")]
use crate::{backend::task::TaskType, windowing::OverlaySelector};
use crate::{
backend::{input::HoverResult, task::TaskContainer},
gui::panel::{GuiPanel, NewGuiPanelParams, OnCustomAttribFunc, button::BUTTON_EVENTS},
backend::{
input::HoverResult,
task::{TaskContainer, TaskType},
},
gui::panel::{button::BUTTON_EVENTS, GuiPanel, NewGuiPanelParams, OnCustomAttribFunc},
overlays::edit::{
lock::InteractLockHandler, pos::PositioningHandler, tab::ButtonPaneTabSwitcher,
},
state::AppState,
subsystem::hid::WheelDelta,
windowing::{
OverlayID,
backend::{DummyBackend, OverlayBackend, OverlayEventData, RenderResources, ShouldRender},
window::OverlayWindowConfig,
OverlayID, OverlaySelector,
},
};