diff --git a/CMakeLists.txt b/CMakeLists.txt index 703a6156..741f4ae4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -314,6 +314,7 @@ qt5_wrap_cpp(MOC_HEADERS src/ui/FlatButton.h src/ui/Label.h src/ui/FloatingButton.h + src/ui/Menu.h src/ui/OverlayWidget.h src/ui/ScrollBar.h src/ui/SnackBar.h diff --git a/src/ui/Menu.h b/src/ui/Menu.h index 4c2a3c68..d0427851 100644 --- a/src/ui/Menu.h +++ b/src/ui/Menu.h @@ -6,27 +6,16 @@ class Menu : public QMenu { + Q_OBJECT public: Menu(QWidget *parent = nullptr) - : QMenu(parent) - { - QFont font; - font.setPixelSize(conf::fontSize); - - setFont(font); - setStyleSheet( - "QMenu { color: black; background-color: white; margin: 0px;}" - "QMenu::item {" - "color: black; padding: 7px 20px; border: 1px solid transparent;" - "margin: 2px 0px; }" - "QMenu::item:selected { color: black; background: rgba(180, 180, 180, 100); }"); - }; + : QMenu(parent){}; protected: - void leaveEvent(QEvent *e) + void leaveEvent(QEvent *e) override { - Q_UNUSED(e); - hide(); + + QMenu::leaveEvent(e); } };