From aea2eac3d1f6c8f41b27a4e9bfd565e922b5f76e Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 12 Jan 2021 13:31:32 +0100 Subject: [PATCH] HexEditor: Hide unnecessary scrollbars in the main file view --- Userland/Applications/HexEditor/HexEditor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Applications/HexEditor/HexEditor.cpp b/Userland/Applications/HexEditor/HexEditor.cpp index f4999661f8..6ccba8579a 100644 --- a/Userland/Applications/HexEditor/HexEditor.cpp +++ b/Userland/Applications/HexEditor/HexEditor.cpp @@ -42,6 +42,7 @@ HexEditor::HexEditor() { + set_should_hide_unnecessary_scrollbars(true); set_focus_policy(GUI::FocusPolicy::StrongFocus); set_scrollbars_enabled(true); set_font(Gfx::FontDatabase::default_fixed_width_font());