Minor tweak to the quickstart guide

Apply #5618 also to the quickstart guide.
This commit is contained in:
Simon Hausmann 2024-08-13 14:45:16 +02:00 committed by Simon Hausmann
parent 227bd78150
commit 782bf6e7c6

View file

@ -136,7 +136,7 @@ slint::slint! {
// old: tile.image_visible = !tile.image_visible;
// new:
if (!root.disable_tiles) {
tile.image_visible = !tile.image_visible;
tile.image_visible = true;
root.check_if_pair_solved();
}
}