Qt/Debugger: Make spacing more compact

This commit is contained in:
spycrab
2018-08-02 21:50:23 +02:00
parent 6d56b03304
commit 8d184ab9bd
8 changed files with 26 additions and 3 deletions

View File

@ -85,6 +85,9 @@ void CodeWidget::CreateWidgets()
{
auto* layout = new QGridLayout;
layout->setContentsMargins(2, 2, 2, 2);
layout->setSpacing(0);
m_search_address = new QLineEdit;
m_search_symbols = new QLineEdit;
m_code_view = new CodeViewWidget;