Qt: Fix log / log config window not being marked as hidden when closing

This commit is contained in:
spycrab
2017-09-20 13:18:36 +02:00
parent d1abd71ccb
commit 0b43e1bcf4
4 changed files with 18 additions and 0 deletions

View File

@ -12,6 +12,7 @@
#include "Common/Logging/LogManager.h"
class QCheckBox;
class QCloseEvent;
class QComboBox;
class QPushButton;
class QVBoxLayout;
@ -25,6 +26,9 @@ public:
explicit LogWidget(QWidget* parent = nullptr);
~LogWidget();
protected:
void closeEvent(QCloseEvent*) override;
private:
void UpdateLog();
void UpdateFont();