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()
// 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()

Loading…
Cancel
Save