Add aggregate inlines UI.

This commit is contained in:
Bartosz Taudul 2024-03-13 18:51:41 +01:00
parent f264d0736a
commit f04cdb7782
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3
2 changed files with 5 additions and 0 deletions

View File

@ -494,6 +494,7 @@ private:
bool m_showExternalFrames = true; bool m_showExternalFrames = true;
bool m_showUnknownFrames = true; bool m_showUnknownFrames = true;
bool m_statSeparateInlines = false; bool m_statSeparateInlines = false;
bool m_mergeInlines = false;
bool m_statShowAddress = false; bool m_statShowAddress = false;
bool m_statShowKernel = true; bool m_statShowKernel = true;
bool m_groupChildrenLocations = false; bool m_groupChildrenLocations = false;

View File

@ -300,6 +300,10 @@ void View::DrawStatistics()
ImGui::SameLine(); ImGui::SameLine();
ImGui::Spacing(); ImGui::Spacing();
ImGui::SameLine(); ImGui::SameLine();
ImGui::Checkbox( ICON_FA_LAYER_GROUP " Aggregate", &m_mergeInlines );
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
ImGui::Checkbox( ICON_FA_AT " Address", &m_statShowAddress ); ImGui::Checkbox( ICON_FA_AT " Address", &m_statShowAddress );
ImGui::SameLine(); ImGui::SameLine();
ImGui::Spacing(); ImGui::Spacing();