Skip to content
Extraits de code Groupes Projets
Valider 3327fc01 rédigé par Rodrigo Braz Monteiro's avatar Rodrigo Braz Monteiro
Parcourir les fichiers

Fixed issue #674, related to ScaledBorderAndShadow being erased by Clean Script Info

Originally committed to SVN as r1922.
parent 853fbfae
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -83,12 +83,13 @@ void AssTransformCleanInfoFilter::ProcessSubs(AssFile *subs, wxWindow *export_di
continue;
}
wxString field = curEntry->GetEntryData().Left(curEntry->GetEntryData().Find(_T(':')));
if (field != _T("ScriptType") &&
field != _T("Collisions") &&
field != _T("PlayResX") &&
field != _T("PlayResY") &&
field != _T("WrapStyle")) {
wxString field = curEntry->GetEntryData().Left(curEntry->GetEntryData().Find(_T(':'))).Lower();
if (field != _T("scripttype") &&
field != _T("collisions") &&
field != _T("playresx") &&
field != _T("playresy") &&
field != _T("wrapstyle") &&
field != _T("scaledborderandshadow")) {
delete curEntry;
subs->Line.erase(cur);
}
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment