Remove chat window opening animation

This commit is contained in:
Ryan Huffman 2014-04-10 11:41:10 -07:00
parent 89c2812551
commit 5099a0e061

View file

@ -1212,12 +1212,6 @@ void Menu::showChat() {
_chatWindow->resize(0, _chatWindow->height());
_chatWindow->toggleViewAction()->trigger();
QPropertyAnimation* slideAnimation = new QPropertyAnimation(_chatWindow, "geometry", _chatWindow);
slideAnimation->setStartValue(_chatWindow->geometry());
slideAnimation->setEndValue(QRect(mainWindow->width() - width, _chatWindow->y(),
width, _chatWindow->height()));
slideAnimation->setDuration(250);
slideAnimation->start(QAbstractAnimation::DeleteWhenStopped);
}
}