Add update values slot for config widget

This commit is contained in:
lupoDharkael
2017-07-31 01:00:14 +02:00
parent 37acf9383c
commit 162bd5f543
14 changed files with 121 additions and 50 deletions

View File

@@ -136,3 +136,9 @@ void Controller::disableTrayIcon() {
m_trayIcon->deleteLater();
ConfigHandler().setDisabledTrayIcon(true);
}
void Controller::updateConfigComponents() {
if(m_configWindow) {
m_configWindow->updateComponents();
}
}