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

@ -207,3 +207,8 @@ void LogWidget::Log(LogTypes::LOG_LEVELS level, const char* text)
QString::fromStdString(color),
QString::fromStdString(std::string(text).substr(TIMESTAMP_LENGTH))));
}
void LogWidget::closeEvent(QCloseEvent*)
{
Settings::Instance().SetLogVisible(false);
}