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:
parent
32aa23822b
commit
e3acb635a3
@ -483,6 +483,7 @@ bool View::DrawImpl()
|
||||
m_stcb( m_worker.GetCaptureName().c_str() );
|
||||
}
|
||||
|
||||
{
|
||||
auto& style = ImGui::GetStyle();
|
||||
const auto wrPrev = style.WindowRounding;
|
||||
const auto wbsPrev = style.WindowBorderSize;
|
||||
@ -500,6 +501,7 @@ bool View::DrawImpl()
|
||||
style.WindowBorderSize = wbsPrev;
|
||||
style.WindowPadding = wpPrev;
|
||||
style.Colors[ImGuiCol_WindowBg] = ImVec4( 0.11f, 0.11f, 0.08f, 1.f );
|
||||
}
|
||||
#else
|
||||
char tmp[2048];
|
||||
sprintf( tmp, "%s###Profiler", m_worker.GetCaptureName().c_str() );
|
||||
@ -682,8 +684,22 @@ bool View::DrawImpl()
|
||||
const auto dockspaceId = ImGui::GetID( "tracyDockspace" );
|
||||
ImGui::DockSpace( dockspaceId, ImVec2( 0, 0 ), ImGuiDockNodeFlags_NoDockingInCentralNode );
|
||||
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" );
|
||||
|
||||
style.WindowPadding = wpPrev;
|
||||
#ifndef TRACY_NO_ROOT_WINDOW
|
||||
style.Colors[ImGuiCol_WindowBg] = ImVec4( 0.11f, 0.11f, 0.08f, 1.f );
|
||||
#endif
|
||||
}
|
||||
|
||||
DrawFrames();
|
||||
DrawZones();
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user