diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-25 13:58:47 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-25 13:58:47 +0100 |
commit | 4d3478aa7157bde0f8e54df4464531abe901c7b5 (patch) | |
tree | 4d1df9f1ce08a6a8e8ea75e12927520eb6ed76c7 /LibGUI/GItemView.cpp | |
parent | 20137e45f487ad3a9314e96de2f24e9676184134 (diff) | |
download | serenity-4d3478aa7157bde0f8e54df4464531abe901c7b5.zip |
GItemView: Hide the horizontal scrollbar since we never need it.
This view always relayouts the content to fit the available width, so we
don't need a horizontal scrollbar. :^)
Diffstat (limited to 'LibGUI/GItemView.cpp')
-rw-r--r-- | LibGUI/GItemView.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/LibGUI/GItemView.cpp b/LibGUI/GItemView.cpp index 29195cdc7b..f5ef4ba387 100644 --- a/LibGUI/GItemView.cpp +++ b/LibGUI/GItemView.cpp @@ -7,6 +7,7 @@ GItemView::GItemView(GWidget* parent) : GAbstractView(parent) { + horizontal_scrollbar().set_visible(false); } GItemView::~GItemView() |