mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-06 01:50:38 +00:00
Don't try to show find-all dialog if it's already visible
This commit is contained in:
@@ -370,6 +370,12 @@ namespace renderdocui.Windows
|
||||
if (m_FindAll == null)
|
||||
m_FindAll = new FindAllDialog(FindAllFiles);
|
||||
|
||||
if (m_FindAll.Visible)
|
||||
{
|
||||
m_FindAll.Activate();
|
||||
return;
|
||||
}
|
||||
|
||||
m_FindAll.Show(this);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user