UI: Use int return type in OBSIgnoreWheelProxyStyle

master
Richard Stanway 2022-05-30 22:55:36 +02:00
parent 898256d416
commit 34bbb94acd
No known key found for this signature in database
GPG Key ID: 4F96FCA24BCE7BA1
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ int OBSIgnoreWheelProxyStyle::styleHint(StyleHint hint,
{
#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0)
if (hint == SH_ComboBox_AllowWheelScrolling)
return false;
return 0;
#endif
return QProxyStyle::styleHint(hint, option, widget, returnData);