Fix: The tool crashed if it has traces and a session file is loaded

Before loading a session file it is needed to clear the current dataset and traces.
This commit is contained in:
andresmmera 2024-10-18 19:47:10 +02:00
parent 2d0bb97d6e
commit 1ab379af36

View File

@ -2415,8 +2415,9 @@ void Qucs_S_SPAR_Viewer::dropEvent(QDropEvent *event)
if (!fileList.isEmpty()) {
// Check if this is a session file
if (fileList.size() == 1){
if (fileList.first().endsWith(".spar", Qt::CaseInsensitive)) {
// Then open it as a session settings file.
if (fileList.first().endsWith(".spar", Qt::CaseInsensitive)) {// Then open it as a session settings file.
// Remove traces and the dataset from the current session before loading the session file
removeAllFiles();
loadSession(fileList.first());
this->activateWindow();
return;