summaryrefslogtreecommitdiff
path: root/LibGUI/GItemView.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-03-25 13:58:47 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-03-25 13:58:47 +0100
commit4d3478aa7157bde0f8e54df4464531abe901c7b5 (patch)
tree4d1df9f1ce08a6a8e8ea75e12927520eb6ed76c7 /LibGUI/GItemView.cpp
parent20137e45f487ad3a9314e96de2f24e9676184134 (diff)
downloadserenity-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.cpp1
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()