Fix crash when we open the same file at the same windows twice.
This commit is contained in:
parent
807183b2ce
commit
edee237fb8
|
@ -149,8 +149,12 @@ auto VPMainWindow::LoadFile(QString path) -> bool
|
|||
if (w != list.end())
|
||||
{
|
||||
(*w)->activateWindow();
|
||||
close();
|
||||
return false;
|
||||
if (this != *w)
|
||||
{
|
||||
close();
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
VlpCreateLock(lock, path);
|
||||
|
|
Loading…
Reference in New Issue
Block a user