From a334883c47117c31042dd336ef06bc1fb1ee520b Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Mon, 20 Jun 2022 18:53:23 -0700 Subject: [PATCH] Qt/MemoryViewWidget: Don't elide text Before, the Hex 32 display would get truncated on Linux. --- Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp b/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp index 025582a5f8..7e87d9720b 100644 --- a/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp @@ -254,6 +254,7 @@ void MemoryViewWidget::Update() m_table->verticalHeader()->setDefaultSectionSize(m_font_vspace - 1); m_table->verticalHeader()->setMinimumSectionSize(m_font_vspace - 1); m_table->horizontalHeader()->setMinimumSectionSize(m_font_width * 2); + m_table->setTextElideMode(Qt::TextElideMode::ElideNone); const AddressSpace::Accessors* accessors = AddressSpace::GetAccessors(m_address_space);