Skip to content

Commit 5e76336

Browse files
committed
Qt 6.11.1 removed transient scrollbar support
1 parent f538381 commit 5e76336

2 files changed

Lines changed: 0 additions & 4 deletions

File tree

docs/guide/settings.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,6 @@ The following settings are specific to Binary Views. To access these settings, y
631631
|ui.theme|Color Blind Mode|Choose colors that are visible to those with red/green color blindness.|`boolean`|`False`|[`SettingsUserScope`]|<a id='ui.theme.colorBlind'>ui.theme.colorBlind</a>|
632632
|ui.theme|Theme|Customize the appearance and style of Binary Ninja.|`string`|`Ninja Edit`|[`SettingsUserScope`]|<a id='ui.theme.name'>ui.theme.name</a>|
633633
|ui.theme|Random Theme on Startup|Randomize the theme on application startup.|`boolean`|`False`|[`SettingsUserScope`]|<a id='ui.theme.randomize'>ui.theme.randomize</a>|
634-
|ui.theme|Transient Scrollbars|Enables transient scrollbar support provided by Qt.|`boolean`|`False`|[`SettingsUserScope`]|<a id='ui.theme.transientScrollbars'>ui.theme.transientScrollbars</a>|
635634
|ui.types|Check for Type Errors Before Accept|When changing a type in the change type dialog, check your input for type errors before pressing Accept. This may cause slowdowns in analyses containing large numbers of times.|`boolean`|`True`|[`SettingsUserScope`]|<a id='ui.types.checkParse'>ui.types.checkParse</a>|
636635
|ui.types|Max Auto Type Dialog Features Count|The maximum number of types allowed for enabling auto-parsing and completion features.|`number`|`50000`|[`SettingsProjectScope`, `SettingsResourceScope`, `SettingsUserScope`]|<a id='ui.types.maxAutoFeaturesCount'>ui.types.maxAutoFeaturesCount</a>|
637636
|ui.types|Match Types by Substring|When changing a type in the change type dialog, if this setting is enabled all substrings will be matched instead of only startsWith style matching|`boolean`|`False`|[`SettingsUserScope`]|<a id='ui.types.substring'>ui.types.substring</a>|

ui/theme.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ class BINARYNINJAUIAPI CustomFusionStyle : public QProxyStyle
4343
QStyle::SubElement element, const QStyleOption *option, const QWidget *widget) const override;
4444
virtual void drawPrimitive(
4545
PrimitiveElement element, const QStyleOption *option, QPainter *painter, const QWidget *widget) const override;
46-
virtual int styleHint(QStyle::StyleHint hint, const QStyleOption *option = nullptr, const QWidget *widget = nullptr,
47-
QStyleHintReturn *returnData = nullptr) const override;
4846
};
4947

5048
void BINARYNINJAUIAPI pixmapForBWMaskIcon(const QString& url, QPixmap* pixmapOut, BNThemeColor color = SidebarActiveIconColor, const QString& cacheSuffix = "");
@@ -56,7 +54,6 @@ void BINARYNINJAUIAPI refreshUserThemes();
5654
std::vector<QString> BINARYNINJAUIAPI getAvailableThemes();
5755
QString BINARYNINJAUIAPI getActiveTheme();
5856
void BINARYNINJAUIAPI setActiveTheme(const QString& name, bool saveToSettings = true);
59-
void BINARYNINJAUIAPI setTransientScrollbars(bool enable);
6057

6158
bool BINARYNINJAUIAPI isActiveThemeDark();
6259

0 commit comments

Comments
 (0)