Browse Source

reposition busy notification *after* resize

pull/974/head
krepa098 11 years ago
parent
commit
0442db2bae
  1. 3
      src/chatlog/chatlog.cpp

3
src/chatlog/chatlog.cpp

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

Loading…
Cancel
Save