mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
Fix determination of line width.
This commit is contained in:
parent
c384ec132f
commit
929d399995
@ -2091,7 +2091,7 @@ void SourceView::RenderLine( const Line& line, int lineNum, uint32_t ipcnt, uint
|
|||||||
{
|
{
|
||||||
const auto ty = ImGui::GetFontSize();
|
const auto ty = ImGui::GetFontSize();
|
||||||
auto draw = ImGui::GetWindowDrawList();
|
auto draw = ImGui::GetWindowDrawList();
|
||||||
const auto w = m_srcWidth;
|
const auto w = std::max( m_srcWidth, ImGui::GetWindowWidth() );
|
||||||
const auto wpos = ImGui::GetCursorScreenPos();
|
const auto wpos = ImGui::GetCursorScreenPos();
|
||||||
if( m_fileStringIdx == m_hoveredSource && lineNum == m_hoveredLine )
|
if( m_fileStringIdx == m_hoveredSource && lineNum == m_hoveredLine )
|
||||||
{
|
{
|
||||||
@ -2268,7 +2268,7 @@ void SourceView::RenderAsmLine( AsmLine& line, uint32_t ipcnt, uint32_t iptotal,
|
|||||||
{
|
{
|
||||||
const auto ty = ImGui::GetFontSize();
|
const auto ty = ImGui::GetFontSize();
|
||||||
auto draw = ImGui::GetWindowDrawList();
|
auto draw = ImGui::GetWindowDrawList();
|
||||||
const auto w = m_asmWidth;
|
const auto w = std::max( m_asmWidth, ImGui::GetWindowWidth() );
|
||||||
const auto wpos = ImGui::GetCursorScreenPos();
|
const auto wpos = ImGui::GetCursorScreenPos();
|
||||||
if( m_selectedAddressesHover.find( line.addr ) != m_selectedAddressesHover.end() )
|
if( m_selectedAddressesHover.find( line.addr ) != m_selectedAddressesHover.end() )
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user