We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecb82bc commit 4567da5Copy full SHA for 4567da5
mainwindow.cpp
@@ -756,8 +756,8 @@ void MainWindow::ExportAll(int choice)
756
updateOtherPlot(i, 0, false);
757
updateOtherPlot(i, 1, false);
758
759
- ui->leftOtherPlot->ExportSelector(fileDir, "Phase1 " + ui->leftCombo->itemText(i), choice);
760
- ui->rightOtherPlot->ExportSelector(fileDir, "Phase2 " + ui->rightCombo->itemText(i), choice);
+ ui->leftOtherPlot->ExportSelector(fileDir, "Phase1 " + ui->leftCombo->itemText(i).remove("/"), choice);
+ ui->rightOtherPlot->ExportSelector(fileDir, "Phase2 " + ui->rightCombo->itemText(i).remove("/"), choice);
761
}
762
// If I don't clear first it makes the image distorted
763
ui->leftOtherPlot->clearImage();
0 commit comments