diff options
author | 2019-12-02 18:58:25 +0100 | |
---|---|---|
committer | 2019-12-02 19:12:05 +0100 | |
commit | 6b25b4df2219460882f3d3c57da03d2e930e9d82 (patch) | |
tree | 8d238aee57869912c6b89c290f1c9113100901b1 /examples | |
parent | 6943041e0fad65927a741e316509bf07bdaa2f61 (diff) | |
download | iced-6b25b4df2219460882f3d3c57da03d2e930e9d82.tar.gz iced-6b25b4df2219460882f3d3c57da03d2e930e9d82.tar.bz2 iced-6b25b4df2219460882f3d3c57da03d2e930e9d82.zip |
Reset tour start to 0
Diffstat (limited to 'examples')
-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 6b366957..0121c3bd 100644 --- a/examples/tour.rs +++ b/examples/tour.rs @@ -145,7 +145,7 @@ impl Steps { Step::Debugger, Step::End, ], - current: 6, + current: 0, } } |