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