Add a space after the colon in [Script Info] entries

This commit is contained in:
Thomas Goyne 2012-12-09 17:05:11 -08:00
parent 96b3656742
commit c1409b5c25

View file

@ -27,7 +27,7 @@ public:
AssEntry *Clone() const override { return new AssInfo(*this); }
AssEntryGroup Group() const override { return ENTRY_INFO; }
const wxString GetEntryData() const override { return key + ":" + value; }
const wxString GetEntryData() const override { return key + ": " + value; }
wxString GetSSAText() const override { return key.Lower() == "scripttype: v4.00+" ? "ScriptType: v4.00" : GetEntryData(); }
wxString Key() const { return key; }