diff options
| author | spycrab <spycrab@users.noreply.github.com> | 2018-08-17 15:28:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-17 15:28:03 +0200 |
| commit | 12a5fd80bde3c1f5557ea647ebb127d37e74040d (patch) | |
| tree | ece90476f2ae92d463525f0ab17f2ceaecc4176d /Source/Core/DolphinQt/Debugger/CodeWidget.cpp | |
| parent | b5951490f6f9199605895faa746fbd0b35d88094 (diff) | |
| parent | 8d184ab9bd92a702f85868002baf1874a7288adb (diff) | |
Merge pull request #7299 from spycrab/qt_compact
Qt/Debugger: Make spacing more compact
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/CodeWidget.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/CodeWidget.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp index 4f782e0152..7e6110793e 100644 --- a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp @@ -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; |
