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

Tune up work area window padding.

This commit is contained in:
Bartosz Taudul 2020-05-03 13:27:58 +02:00
parent 32aa23822b
commit e3acb635a3

View File

@ -483,6 +483,7 @@ bool View::DrawImpl()
m_stcb( m_worker.GetCaptureName().c_str() ); m_stcb( m_worker.GetCaptureName().c_str() );
} }
{
auto& style = ImGui::GetStyle(); auto& style = ImGui::GetStyle();
const auto wrPrev = style.WindowRounding; const auto wrPrev = style.WindowRounding;
const auto wbsPrev = style.WindowBorderSize; const auto wbsPrev = style.WindowBorderSize;
@ -500,6 +501,7 @@ bool View::DrawImpl()
style.WindowBorderSize = wbsPrev; style.WindowBorderSize = wbsPrev;
style.WindowPadding = wpPrev; style.WindowPadding = wpPrev;
style.Colors[ImGuiCol_WindowBg] = ImVec4( 0.11f, 0.11f, 0.08f, 1.f ); style.Colors[ImGuiCol_WindowBg] = ImVec4( 0.11f, 0.11f, 0.08f, 1.f );
}
#else #else
char tmp[2048]; char tmp[2048];
sprintf( tmp, "%s###Profiler", m_worker.GetCaptureName().c_str() ); sprintf( tmp, "%s###Profiler", m_worker.GetCaptureName().c_str() );
@ -682,8 +684,22 @@ bool View::DrawImpl()
const auto dockspaceId = ImGui::GetID( "tracyDockspace" ); const auto dockspaceId = ImGui::GetID( "tracyDockspace" );
ImGui::DockSpace( dockspaceId, ImVec2( 0, 0 ), ImGuiDockNodeFlags_NoDockingInCentralNode ); ImGui::DockSpace( dockspaceId, ImVec2( 0, 0 ), ImGuiDockNodeFlags_NoDockingInCentralNode );
ImGui::SetNextWindowDockID( dockspaceId ); ImGui::SetNextWindowDockID( dockspaceId );
{
auto& style = ImGui::GetStyle();
const auto wpPrev = style.WindowPadding;
style.WindowPadding = ImVec2( 1, 0 );
#ifndef TRACY_NO_ROOT_WINDOW
style.Colors[ImGuiCol_WindowBg] = ImVec4( 0.129f, 0.137f, 0.11f, 1.f );
#endif
ImGui::Begin( "Work area" ); ImGui::Begin( "Work area" );
style.WindowPadding = wpPrev;
#ifndef TRACY_NO_ROOT_WINDOW
style.Colors[ImGuiCol_WindowBg] = ImVec4( 0.11f, 0.11f, 0.08f, 1.f );
#endif
}
DrawFrames(); DrawFrames();
DrawZones(); DrawZones();