Fix previews animating picts that shouldn't

This commit is contained in:
2025-08-29 16:10:50 -05:00
parent 7020999bcd
commit fcfe04a299

View File

@@ -877,6 +877,7 @@ bool preview_spec_enc_dlog(cDialog* parent, cSpecial& special, short mode) {
// Use dark background that the game uses: // Use dark background that the game uses:
short defaultBackground = cDialog::defaultBackground; short defaultBackground = cDialog::defaultBackground;
cDialog::defaultBackground = cDialog::BG_DARK; cDialog::defaultBackground = cDialog::BG_DARK;
cDialog::defaultDoAnimations = false;
try{ try{
// TODO pass parent to all the preview dialogs // TODO pass parent to all the preview dialogs
eSpecCtxType cur_type = static_cast<eSpecCtxType>(mode); eSpecCtxType cur_type = static_cast<eSpecCtxType>(mode);
@@ -972,6 +973,7 @@ bool preview_spec_enc_dlog(cDialog* parent, cSpecial& special, short mode) {
} SCEN_EDIT_CATCH(0); } SCEN_EDIT_CATCH(0);
cDialog::defaultBackground = defaultBackground; cDialog::defaultBackground = defaultBackground;
cDialog::defaultDoAnimations = true;
return true; return true;
} }