1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

reposition busy notification *after* resize

This commit is contained in:
krepa098 2015-01-26 19:01:18 +01:00
parent bbd20496fd
commit 0442db2bae

View File

@ -408,7 +408,6 @@ void ChatLog::startResizeWorker()
// switch to busy scene displaying the busy notification // switch to busy scene displaying the busy notification
setScene(busyScene); setScene(busyScene);
updateBusyNotification();
verticalScrollBar()->hide(); verticalScrollBar()->hide();
} }
@ -588,6 +587,8 @@ void ChatLog::resizeEvent(QResizeEvent* ev)
{ {
startResizeWorker(); startResizeWorker();
QGraphicsView::resizeEvent(ev); QGraphicsView::resizeEvent(ev);
updateBusyNotification();
} }
void ChatLog::updateMultiSelectionRect() void ChatLog::updateMultiSelectionRect()