X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fchatscene.cpp;h=ef300497ed956076b80a2db24b7133fd39332e89;hb=37112539ef48c17968eb2d55fb8fc76b20329040;hp=3ab059a302dab5c967b7e3aa9b89633568790125;hpb=3013f4e095802e906c85878436da9e2ee3f9028c;p=quassel.git diff --git a/src/qtui/chatscene.cpp b/src/qtui/chatscene.cpp index 3ab059a3..ef300497 100644 --- a/src/qtui/chatscene.cpp +++ b/src/qtui/chatscene.cpp @@ -429,7 +429,6 @@ void ChatScene::rowsAboutToBeRemoved(const QModelIndex &parent, int start, int e bool atTop = (start == 0); bool atBottom = (end == _lines.count() - 1); - bool moveTop = false; // clear selection if(_selectingItem) { @@ -459,7 +458,7 @@ void ChatScene::rowsAboutToBeRemoved(const QModelIndex &parent, int start, int e if(_selectionStart >= 0) { int offset = end - start + 1; if(_selectionStart >= start) - _selectionStart = qMax(_selectionStart -= offset, start); + _selectionStart = qMax(_selectionStart - offset, start); if(_selectionEnd >= start) _selectionEnd -= offset; if(_firstSelectionRow >= start) @@ -478,7 +477,6 @@ void ChatScene::rowsAboutToBeRemoved(const QModelIndex &parent, int start, int e int moveEnd = _lines.count() - 1; if(start < _lines.count() - start) { // move top part - moveTop = true; moveEnd = start - 1; } else { // move bottom part @@ -1017,14 +1015,6 @@ void ChatScene::updateSceneRect(const QRectF &rect) { update(); } -bool ChatScene::event(QEvent *e) { - if(e->type() == QEvent::ApplicationPaletteChange) { - _firstColHandle->setColor(QApplication::palette().windowText().color()); - _secondColHandle->setColor(QApplication::palette().windowText().color()); - } - return QGraphicsScene::event(e); -} - // ======================================== // Webkit Only stuff // ========================================