mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 14:44:34 +00:00
Keep one profiler window size for all captures.
This commit is contained in:
parent
27a1eb94fe
commit
045f792e84
2
NEWS
2
NEWS
@ -11,6 +11,8 @@ v0.4 (xxxx-xx-xx)
|
||||
|
||||
- Added trace update utility, which will convert files saved in previous
|
||||
versions of tracy to be up-to-date.
|
||||
- Fix regression causing varying size of profiler window for different
|
||||
captures.
|
||||
|
||||
v0.3.3 (2018-07-03)
|
||||
-------------------
|
||||
|
@ -333,7 +333,9 @@ bool View::DrawImpl()
|
||||
{
|
||||
if( !m_worker.HasData() )
|
||||
{
|
||||
ImGui::Begin( m_worker.GetAddr().c_str(), nullptr, ImGuiWindowFlags_AlwaysAutoResize );
|
||||
char tmp[2048];
|
||||
sprintf( tmp, "%s###Connection", m_worker.GetAddr().c_str() );
|
||||
ImGui::Begin( tmp, nullptr, ImGuiWindowFlags_AlwaysAutoResize );
|
||||
ImGui::Text( "Waiting for connection..." );
|
||||
ImGui::End();
|
||||
return true;
|
||||
@ -359,7 +361,9 @@ bool View::DrawImpl()
|
||||
}
|
||||
|
||||
std::lock_guard lock( m_worker.GetDataLock() );
|
||||
ImGui::Begin( m_worker.GetCaptureName().c_str(), keepOpenPtr, ImVec2( 1550, 800 ), -1, ImGuiWindowFlags_NoScrollbar );
|
||||
char tmp[2048];
|
||||
sprintf( tmp, "%s###Profiler", m_worker.GetCaptureName().c_str() );
|
||||
ImGui::Begin( tmp, keepOpenPtr, ImVec2( 1550, 800 ), -1, ImGuiWindowFlags_NoScrollbar );
|
||||
if( !m_worker.IsDataStatic() )
|
||||
{
|
||||
if( ImGui::Button( m_pause ? MainWindowButtons[0] : MainWindowButtons[1], ImVec2( bw, 0 ) ) ) m_pause = !m_pause;
|
||||
|
Loading…
Reference in New Issue
Block a user