obs-studio/UI/horizontal-scroll-area.hpp

19 lines
320 B
C++
Raw Permalink Normal View History

2018-04-27 19:49:48 -07:00
#pragma once
#include <QScrollArea>
class QResizeEvent;
class HScrollArea : public QScrollArea {
Q_OBJECT
public:
inline HScrollArea(QWidget *parent = nullptr) : QScrollArea(parent)
2018-04-27 19:49:48 -07:00
{
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
}
protected:
virtual void resizeEvent(QResizeEvent *event) override;
};