##// END OF EJS Templates
Increase spacing at the bottom of the visu to give more space for dropping in a new zone
Increase spacing at the bottom of the visu to give more space for dropping in a new zone

File last commit:

r929:5ec3f5d1277b
r978:839cf5f776e4
Show More
MacScrollBarStyle.h
18 lines | 476 B | text/x-c | CLexer
#ifndef SCIQLOP_MACSCROLLBARSTYLE_H
#define SCIQLOP_MACSCROLLBARSTYLE_H
#include <QProxyStyle>
/**
* @brief Special style to always display the scrollbars on MAC.
*/
class MacScrollBarStyle : public QProxyStyle {
public:
int styleHint(StyleHint hint, const QStyleOption *option, const QWidget *widget,
QStyleHintReturn *returnData) const;
void selfInstallOn(QWidget *widget, bool installOnSubWidgets);
};
#endif // SCIQLOP_MACSCROLLBARSTYLE_H