diff options
author | 2019-11-20 06:18:22 +0100 | |
---|---|---|
committer | 2019-11-20 06:18:22 +0100 | |
commit | 93093fa0236f3b9bdb048eee32e8d6f347c44794 (patch) | |
tree | 0f975367dc1eb57c09c200ab311d03ad5f7ec594 /examples/tour.rs | |
parent | d53e1bb00b9dec57b660860e8f972619675754a2 (diff) | |
download | iced-93093fa0236f3b9bdb048eee32e8d6f347c44794.tar.gz iced-93093fa0236f3b9bdb048eee32e8d6f347c44794.tar.bz2 iced-93093fa0236f3b9bdb048eee32e8d6f347c44794.zip |
Disable debug view by default in `tour` example
Diffstat (limited to 'examples/tour.rs')
-rw-r--r-- | examples/tour.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tour.rs b/examples/tour.rs index 6d7a080f..f5bb84d1 100644 --- a/examples/tour.rs +++ b/examples/tour.rs @@ -29,7 +29,7 @@ impl Application for Tour { scroll: scrollable::State::new(), back_button: button::State::new(), next_button: button::State::new(), - debug: true, + debug: false, }, Command::none(), ) |