diff options
author | Andreas Kling <kling@serenityos.org> | 2021-05-26 22:41:26 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-26 22:41:26 +0200 |
commit | c739b3cafaf4d20f53448706ac75d7c2e6a273d9 (patch) | |
tree | fce7f06167cc49d73375ad2cdb23752bb9267643 /Userland/Applications | |
parent | 7a24a60e729156ca94e3d66f202861a9977d878c (diff) | |
download | serenity-c739b3cafaf4d20f53448706ac75d7c2e6a273d9.zip |
Help: Tweak splitter spacing in main UI layout
This doesn't look perfect, but it's slightly better than unmodified.
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/Help/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Applications/Help/main.cpp b/Userland/Applications/Help/main.cpp index 8f61bcc0cd..5a310ff904 100644 --- a/Userland/Applications/Help/main.cpp +++ b/Userland/Applications/Help/main.cpp @@ -88,6 +88,7 @@ int main(int argc, char* argv[]) auto& toolbar = toolbar_container.add<GUI::Toolbar>(); auto& splitter = widget.add<GUI::HorizontalSplitter>(); + splitter.layout()->set_spacing(5); auto model = ManualModel::create(); |