15 lines
299 B
Rust
15 lines
299 B
Rust
use super::*;
|
|
|
|
pub fn werror(ui: &mut Ui, msg: &str) -> WidgetId {
|
|
wtext(msg)
|
|
.size(20)
|
|
.pad(10)
|
|
.background(rect(Color::RED).radius(10))
|
|
.add(ui)
|
|
.any()
|
|
}
|
|
|
|
pub fn hint(msg: impl Into<String>) -> TextBuilder {
|
|
wtext(msg).size(20).color(Color::GRAY)
|
|
}
|