Disable debug view by default in `tour` example

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

View File

@ -29,7 +29,7 @@ impl Application for Tour {
scroll: scrollable::State::new(), scroll: scrollable::State::new(),
back_button: button::State::new(), back_button: button::State::new(),
next_button: button::State::new(), next_button: button::State::new(),
debug: true, debug: false,
}, },
Command::none(), Command::none(),
) )