Skip to content

Commit

Permalink
xLightsSequencer#5096 change batchrender separator
Browse files Browse the repository at this point in the history
  • Loading branch information
cybercop23 committed Jan 6, 2025
1 parent 0b99825 commit e8cfd8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions xLights/BatchRenderDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()) {
Expand Down Expand Up @@ -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);
}
Expand Down
2 changes: 1 addition & 1 deletion xLights/controllers/FPPConnectDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<xLightsFrame*>(GetParent());
wxString const& showDirectory = frame->GetShowDirectory();
wxString const& fseqDirectory = frame->GetFseqDirectory();
Expand Down

0 comments on commit e8cfd8d

Please sign in to comment.