added new overlay for splits when you hold alt that does nothing yet

This commit is contained in:
fourtf
2018-05-08 15:12:04 +02:00
parent f695a41c6c
commit 463a1f1945
15 changed files with 274 additions and 12 deletions
+3 -3
View File
@@ -138,9 +138,9 @@ void Window::refreshWindowTitle(const QString &username)
this->setWindowTitle(username + " - Chatterino for Twitch");
}
bool Window::event(QEvent *e)
bool Window::event(QEvent *event)
{
switch (e->type()) {
switch (event->type()) {
case QEvent::WindowActivate:
break;
@@ -156,7 +156,7 @@ bool Window::event(QEvent *e)
}
} break;
};
return BaseWindow::event(e);
return BaseWindow::event(event);
}
void Window::closeEvent(QCloseEvent *event)