Remove `dbg!` in `UserInterface`

This commit is contained in:
Héctor Ramón Jiménez 2019-11-20 06:19:20 +01:00
parent 93093fa023
commit 28423f54db
1 changed files with 1 additions and 5 deletions

View File

@ -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 {