Remove `dbg!` in `UserInterface`
This commit is contained in:
parent
93093fa023
commit
28423f54db
|
@ -109,11 +109,7 @@ where
|
||||||
let layout = if hash == cache.hash {
|
let layout = if hash == cache.hash {
|
||||||
cache.layout
|
cache.layout
|
||||||
} else {
|
} else {
|
||||||
let layout_start = std::time::Instant::now();
|
renderer.layout(&root)
|
||||||
let layout = renderer.layout(&root);
|
|
||||||
dbg!(std::time::Instant::now() - layout_start);
|
|
||||||
|
|
||||||
layout
|
|
||||||
};
|
};
|
||||||
|
|
||||||
UserInterface {
|
UserInterface {
|
||||||
|
|
Loading…
Reference in New Issue