diff options
author | Andreas Kling <kling@serenityos.org> | 2020-04-23 18:21:23 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-23 18:30:59 +0200 |
commit | 0af5e0b9f851da399012163de47de29f6521ea04 (patch) | |
tree | c3cddd81dbd6ed47ba2a20a57bf84d59b2b6c00f /Applications/HexEditor | |
parent | fa0bab843a46365eeaa950a589d17d790896f55d (diff) | |
download | serenity-0af5e0b9f851da399012163de47de29f6521ea04.zip |
Applications: Tweak main layout spacing and background
Diffstat (limited to 'Applications/HexEditor')
-rw-r--r-- | Applications/HexEditor/HexEditorWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/HexEditor/HexEditorWidget.cpp b/Applications/HexEditor/HexEditorWidget.cpp index 43d80dae0a..7b16c2364c 100644 --- a/Applications/HexEditor/HexEditorWidget.cpp +++ b/Applications/HexEditor/HexEditorWidget.cpp @@ -48,7 +48,7 @@ HexEditorWidget::HexEditorWidget() { set_layout<GUI::VerticalBoxLayout>(); - layout()->set_spacing(0); + layout()->set_spacing(2); m_editor = add<HexEditor>(); |