0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

UI: Always hide VScrollArea horizontal scroll bar

There appears to be a bug with displaying the vertical scroll bar widget
where the horizontal scroll bar will show when it's not supposed to.
Fortunately it can be completely disabled.
This commit is contained in:
jp9000 2015-01-03 07:32:04 -08:00
parent b2b76559f3
commit ef6064b9b5

View File

@ -11,6 +11,7 @@ public:
inline VScrollArea(QWidget *parent = nullptr)
: QScrollArea(parent)
{
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
}
protected: