summaryrefslogtreecommitdiff
path: root/Applications/HexEditor
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-04-23 18:51:32 +0200
committerAndreas Kling <kling@serenityos.org>2020-04-23 18:52:34 +0200
commit3af8fcc8393b8834bfebc2abe73da65dd516fa5b (patch)
tree10312946bdedf91ec3d86bdf869868d44e1276ce /Applications/HexEditor
parent0f8dca9441091052b9868b321cd13febdf5c3839 (diff)
downloadserenity-3af8fcc8393b8834bfebc2abe73da65dd516fa5b.zip
HexEditor: Fill main widget with background to prevent gaps
Diffstat (limited to 'Applications/HexEditor')
-rw-r--r--Applications/HexEditor/HexEditorWidget.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Applications/HexEditor/HexEditorWidget.cpp b/Applications/HexEditor/HexEditorWidget.cpp
index 7b16c2364c..963068d411 100644
--- a/Applications/HexEditor/HexEditorWidget.cpp
+++ b/Applications/HexEditor/HexEditorWidget.cpp
@@ -47,6 +47,7 @@
HexEditorWidget::HexEditorWidget()
{
+ set_fill_with_background_color(true);
set_layout<GUI::VerticalBoxLayout>();
layout()->set_spacing(2);