diff --git a/xLights/BatchRenderDialog.cpp b/xLights/BatchRenderDialog.cpp index 54fddd3b5..04e9f67b1 100644 --- a/xLights/BatchRenderDialog.cpp +++ b/xLights/BatchRenderDialog.cpp @@ -269,7 +269,7 @@ bool BatchRenderDialog::Prepare(const wxString &showDir) config->Read("BatchRendererItemList", &itcsv, ""); if (!itcsv.IsEmpty()) { - wxArrayString savedUploadItems = wxSplit(itcsv, ','); + wxArrayString savedUploadItems = wxSplit(itcsv, '|'); wxTreeListItem item = CheckListBox_Sequences->GetFirstItem(); while (item.IsOk()) { @@ -431,7 +431,7 @@ void BatchRenderDialog::SaveSettings() bool isChecked = CheckListBox_Sequences->GetCheckedState(item) == wxCHK_CHECKED; if (isChecked) { if (selected != "") { - selected += ","; + selected += "|"; } selected += CheckListBox_Sequences->GetItemText(item); } diff --git a/xLights/controllers/FPPConnectDialog.cpp b/xLights/controllers/FPPConnectDialog.cpp index 8b04de119..f15f83ca5 100644 --- a/xLights/controllers/FPPConnectDialog.cpp +++ b/xLights/controllers/FPPConnectDialog.cpp @@ -725,7 +725,7 @@ void FPPConnectDialog::SelectBatchRenderSeq() { config->Read("BatchRendererItemList", &itcsv, ""); if (!itcsv.IsEmpty()) { - auto const& savedBatchItems = wxSplit(itcsv, ','); + auto const& savedBatchItems = wxSplit(itcsv, '|'); xLightsFrame* frame = static_cast(GetParent()); wxString const& showDirectory = frame->GetShowDirectory(); wxString const& fseqDirectory = frame->GetFseqDirectory();