2021-12-18 00:16:11 +00:00
|
|
|
#include "BloomProxyStyle.hpp"
|
|
|
|
|
|
2022-02-05 15:32:08 +00:00
|
|
|
namespace Bloom
|
|
|
|
|
{
|
|
|
|
|
int BloomProxyStyle::styleHint(
|
|
|
|
|
StyleHint hint,
|
|
|
|
|
const QStyleOption* option,
|
|
|
|
|
const QWidget* widget,
|
|
|
|
|
QStyleHintReturn* returnData
|
|
|
|
|
) const {
|
|
|
|
|
if (hint == QStyle::SH_ComboBox_Popup) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2021-12-18 00:16:11 +00:00
|
|
|
|
2022-02-05 15:32:08 +00:00
|
|
|
return QProxyStyle::styleHint(hint, option, widget, returnData);
|
2021-12-18 00:16:11 +00:00
|
|
|
}
|
|
|
|
|
}
|