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

Disable window transparency.

This commit is contained in:
Bartosz Taudul
2019-03-07 01:18:24 +01:00
parent 535d7b2da1
commit f69f9d4660
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -210,7 +210,6 @@ int main( int argc, char** argv )
style.FrameBorderSize = 1.f * dpiScale;
style.FrameRounding = 5.f * dpiScale;
style.ScrollbarSize *= dpiScale;
style.Colors[ImGuiCol_WindowBg] = ImVec4( 0.11f, 0.11f, 0.08f, 0.94f );
style.Colors[ImGuiCol_ScrollbarBg] = ImVec4( 1, 1, 1, 0.03f );
ImVec4 clear_color = ImColor(114, 144, 154);
@@ -248,6 +247,7 @@ int main( int argc, char** argv )
glfwSetWindowTitle( window, title );
}
style.Colors[ImGuiCol_WindowBg] = ImVec4( 0.129f, 0.137f, 0.11f, 1.f );
ImGui::Begin( "Get started", nullptr, ImGuiWindowFlags_AlwaysAutoResize );
char buf[128];
sprintf( buf, "Tracy Profiler %i.%i.%i", tracy::Version::Major, tracy::Version::Minor, tracy::Version::Patch );