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

Use small checkbox in appropriate places.

This commit is contained in:
Bartosz Taudul
2019-03-08 18:39:41 +01:00
parent e004dc85a9
commit 9fd8a20d7c
2 changed files with 11 additions and 3 deletions
+8
View File
@@ -32,6 +32,14 @@ namespace tracy
draw->AddCircleFilled( wpos + ImVec2( w * 0.5f + ty, h ), ty * ( 0.15f + 0.2f * ( pow( cos( time * 3.5f - 0.3f ), 16.f ) ) ), 0xFFBBBBBB, 12 );
}
static inline bool SmallCheckbox( const char* label, bool* var )
{
ImGui::PushStyleVar( ImGuiStyleVar_FramePadding, ImVec2( 0, 0 ) );
auto ret = ImGui::Checkbox( label, var );
ImGui::PopStyleVar();
return ret;
}
}
#endif