summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2024-10-22 09:02:47 -0400
committerJordan Wiens <jordan@psifertex.com>2024-10-22 09:02:47 -0400
commitb6d1aed922c28193038c9e42133e32eba6cd6758 (patch)
treee71e2aa84cf3f13d67312bf18ca091236830c12d
parentf588991317880c52ce1cf6d8fd0aaafd4c815409 (diff)
add new tool button with background
-rw-r--r--ui/theme.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/ui/theme.h b/ui/theme.h
index c6b8f607..71e51804 100644
--- a/ui/theme.h
+++ b/ui/theme.h
@@ -22,6 +22,14 @@ public:
};
+class BINARYNINJAUIAPI CustomStyleFlatToolButtonWithBackground : public QToolButton
+{
+Q_OBJECT
+public:
+ CustomStyleFlatToolButtonWithBackground(QWidget* parent = nullptr) : QToolButton(parent) {}
+};
+
+
class BINARYNINJAUIAPI CustomStyleFlatToolButton : public QToolButton
{
Q_OBJECT