diff options
| author | spycrab <spycrab@users.noreply.github.com> | 2018-08-02 21:50:23 +0200 |
|---|---|---|
| committer | spycrab <spycrab@users.noreply.github.com> | 2018-08-15 19:26:04 +0200 |
| commit | 8d184ab9bd92a702f85868002baf1874a7288adb (patch) | |
| tree | 26a6e1b5059eb724500971f1af995fc95c9c9e5a /Source/Core/DolphinQt/Debugger/CodeWidget.cpp | |
| parent | 6d56b033041c5f0ae4dc4452563ed8862e867634 (diff) | |
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; |
