Symbol function address column was too narrow.

This commit is contained in:
Bartosz Taudul
2026-05-30 01:26:03 +02:00
parent b7ed5bd9ef
commit 5e6d872940

View File

@@ -875,7 +875,7 @@ void SourceView::RenderSymbolView( Worker& worker, View& view )
widthSet = true;
const auto w = ImGui::GetWindowWidth();
const auto c0 = ImGui::CalcTextSize( "12345678901234567890" ).x;
const auto c2 = ImGui::CalcTextSize( "0xeeeeeeeeeeeeee" ).x;
const auto c2 = ImGui::CalcTextSize( "0x0123456789abcdef" ).x;
ImGui::SetColumnWidth( 0, c0 );
ImGui::SetColumnWidth( 1, w - c0 - c2 );
ImGui::SetColumnWidth( 2, c2 );