1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Set owner of file dialogs on windows.

This commit is contained in:
Bartosz Taudul
2020-06-10 01:52:17 +02:00
parent 483bc3f549
commit d1ef8ea90b
9 changed files with 57 additions and 29 deletions
+5 -1
View File
@@ -127,7 +127,9 @@ private:
};
public:
SourceView( ImFont* font );
using GetWindowCallback = void*(*)();
SourceView( ImFont* font, GetWindowCallback gwcb );
~SourceView();
void SetCpuId( uint32_t cpuid );
@@ -242,6 +244,8 @@ private:
float m_srcWidth;
float m_asmWidth;
GetWindowCallback m_gwcb;
};
}