diff --git a/src/mission.cpp b/src/mission.cpp index 4c513f5b95f..949066f4a03 100644 --- a/src/mission.cpp +++ b/src/mission.cpp @@ -2024,10 +2024,12 @@ bool intAddTransporterTimer() sLabInit.height = 16; sLabInit.pText = WzString::fromUtf8("00/10"); sLabInit.pCallback = intUpdateTransCapacity; - if (!widgAddLabel(psWScreen, &sLabInit)) + auto psCapacityLabel = widgAddLabel(psWScreen, &sLabInit); + if (!psCapacityLabel) { return false; } + psCapacityLabel->setTransparentToMouse(true); return true; }