qt: Remove emit

This commit is contained in:
Nekotekina 2017-06-24 14:13:01 +03:00
parent d86858da64
commit dd553331df
6 changed files with 22 additions and 22 deletions

View file

@ -72,7 +72,7 @@ main_window::main_window(QWidget *parent) : QMainWindow(parent), m_sys_menu_open
QTimer::singleShot(1, [=]() {
// Need to have this happen fast, but not now because connects aren't created yet.
// So, a tricky balance in terms of time but this works.
emit RequestGlobalStylesheetChange(guiSettings->GetCurrentStylesheetPath());
RequestGlobalStylesheetChange(guiSettings->GetCurrentStylesheetPath());
});
}