mirror of
https://github.com/griffi-gh/hUI.git
synced 2024-11-21 22:58:42 -06:00
fix some warnings
This commit is contained in:
parent
7ae72b7a41
commit
e8d8951320
|
@ -1,5 +1,4 @@
|
|||
use hui::{
|
||||
color, size,
|
||||
draw::TextureFormat,
|
||||
signal::Signal,
|
||||
layout::{Alignment, Direction},
|
||||
|
@ -8,10 +7,10 @@ use hui::{
|
|||
text::Text,
|
||||
image::Image,
|
||||
br::Br,
|
||||
interactable::ElementInteractableExt,
|
||||
slider::Slider,
|
||||
UiElementExt,
|
||||
},
|
||||
size,
|
||||
};
|
||||
|
||||
enum CounterSignal {
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
use std::hash::{Hash, Hasher};
|
||||
use glam::Vec2;
|
||||
use hashbrown::HashMap;
|
||||
use nohash_hasher::{BuildNoHashHasher, NoHashHasher};
|
||||
use tinyset::{Fits64, Set64, SetU32};
|
||||
use nohash_hasher::BuildNoHashHasher;
|
||||
use tinyset::{Fits64, Set64};
|
||||
use crate::{event::{EventQueue, UiEvent}, rectangle::Rect};
|
||||
|
||||
/// Represents a mouse button.
|
||||
|
|
Loading…
Reference in a new issue