summaryrefslogtreecommitdiffstats
path: root/examples/tour/src/main.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-04-11 05:57:31 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-04-11 05:57:31 +0200
commit45015e37d4123f01b546337e741820975fccf66a (patch)
tree3b927bc4aa49273861f5dc93e2cd45ce85d6796f /examples/tour/src/main.rs
parentaa0be30656e30d116e60a5d06557aea27442ce76 (diff)
downloadiced-45015e37d4123f01b546337e741820975fccf66a.tar.gz
iced-45015e37d4123f01b546337e741820975fccf66a.tar.bz2
iced-45015e37d4123f01b546337e741820975fccf66a.zip
Fix `current` step in `tour`
Diffstat (limited to '')
-rw-r--r--examples/tour/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tour/src/main.rs b/examples/tour/src/main.rs
index e9b9fb3a..90868877 100644
--- a/examples/tour/src/main.rs
+++ b/examples/tour/src/main.rs
@@ -132,7 +132,7 @@ impl Steps {
Step::Debugger,
Step::End,
],
- current: 8,
+ current: 0,
}
}