allow option_if_let_else

This commit is contained in:
galister
2025-11-30 11:42:34 +09:00
parent 7d581c1561
commit 363c2d533c
3 changed files with 11 additions and 11 deletions

View File

@@ -7,8 +7,8 @@ use vulkano::{
image::view::ImageView,
};
use wgui::gfx::{
WGfx,
cmd::{GfxCommandBuffer, WGfxClearMode},
WGfx,
};
use crate::{
@@ -16,7 +16,7 @@ use crate::{
graphics::ExtentExt,
state::AppState,
subsystem::hid::WheelDelta,
windowing::{OverlayID, window::OverlayCategory},
windowing::{window::OverlayCategory, OverlayID},
};
#[derive(Default, Clone, Copy)]
@@ -77,6 +77,7 @@ pub enum OverlayEventData {
NumSetsChanged(usize),
EditModeChanged(bool),
OverlaysChanged(Vec<OverlayMeta>),
DevicesChanged,
}
pub trait OverlayBackend: Any {