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