From 97e4d03776415f33c5250f62faa9bac15b996b85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Br=C3=BCbach?= Date: Tue, 26 May 2026 23:27:06 +0200 Subject: [PATCH] Fix annotation action drop Took 1 minute --- cockatrice/src/game/player/player_dialogs.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cockatrice/src/game/player/player_dialogs.cpp b/cockatrice/src/game/player/player_dialogs.cpp index f338be921..bc223c66f 100644 --- a/cockatrice/src/game/player/player_dialogs.cpp +++ b/cockatrice/src/game/player/player_dialogs.cpp @@ -267,6 +267,7 @@ void PlayerDialogs::onSetAnnotationDialogRequested(const QString &oldAnnotation) return; } QString annotation = dialog->textValue().left(MAX_NAME_LENGTH); + playerActions->actSetAnnotation(player->getGameScene()->selectedCards(), annotation); } void PlayerDialogs::onSetCardCounterDialogRequested(int counterId, const QString &oldValueForDlg)