diff --git a/Userland/Games/Solitaire/Game.cpp b/Userland/Games/Solitaire/Game.cpp index 81091f242ee..0b7a4c86e52 100644 --- a/Userland/Games/Solitaire/Game.cpp +++ b/Userland/Games/Solitaire/Game.cpp @@ -326,8 +326,6 @@ void Game::doubleclick_event(GUI::MouseEvent& event) to_check.push(move(card)); } } - - update_score(10); } break; } @@ -360,6 +358,8 @@ void Game::move_card(CardStack& from, CardStack& to) remember_move_for_undo(from, to, m_focused_cards); + score_move(from, to); + update(to.bounding_box()); }