mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-23 15:06:32 +00:00
Don't allow the program to close while a global hook is active
This commit is contained in:
@@ -59,6 +59,7 @@ namespace renderdocui.Code
|
||||
|
||||
private bool m_LogLocal = false;
|
||||
private bool m_LogLoaded = false;
|
||||
private bool m_GlobalHookEnabled = false;
|
||||
|
||||
private FileSystemWatcher m_LogWatcher = null;
|
||||
|
||||
@@ -119,6 +120,8 @@ namespace renderdocui.Code
|
||||
public string LogFileName { get { return m_LogFile; } set { if (LogLoaded) m_LogFile = value; } }
|
||||
public bool IsLogLocal { get { return m_LogLocal; } set { m_LogLocal = value; } }
|
||||
|
||||
public bool GlobalHookEnabled { get { return m_GlobalHookEnabled; } set { m_GlobalHookEnabled = value; } }
|
||||
|
||||
public FetchFrameInfo FrameInfo { get { return m_FrameInfo; } }
|
||||
|
||||
public APIProperties APIProps { get { return m_APIProperties; } }
|
||||
|
||||
Reference in New Issue
Block a user