mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
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:
parent
2d0bb97d6e
commit
1ab379af36
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user