early-access version 1413

This commit is contained in:
pineappleEA
2021-02-04 21:32:13 +01:00
parent 043a30bf5c
commit 24e7f47921
6 changed files with 24 additions and 11 deletions
+3
View File
@@ -9,6 +9,7 @@
class QAction;
class QHideEvent;
class QShowEvent;
class PlayerControlPreview;
class ControllerDialog : public QWidget {
Q_OBJECT
@@ -18,6 +19,7 @@ public:
/// Returns a QAction that can be used to toggle visibility of this dialog.
QAction* toggleViewAction();
void RefreshConfiguration();
protected:
void showEvent(QShowEvent* ev) override;
@@ -25,4 +27,5 @@ protected:
private:
QAction* toggle_view_action = nullptr;
PlayerControlPreview* widget;
};