1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 04:05:07 +00:00

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. :^)
This commit is contained in:
Andreas Kling 2019-03-25 13:58:47 +01:00
parent 20137e45f4
commit 4d3478aa71
2 changed files with 6 additions and 2 deletions

View file

@ -7,6 +7,7 @@
GItemView::GItemView(GWidget* parent)
: GAbstractView(parent)
{
horizontal_scrollbar().set_visible(false);
}
GItemView::~GItemView()