Просмотр исходного кода

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.
jp9000 11 лет назад
Родитель
Сommit
ef6064b9b5
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      obs/vertical-scroll-area.hpp

+ 1 - 0
obs/vertical-scroll-area.hpp

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