diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-08-30 18:51:49 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-08-30 18:51:49 (GMT) |
commit | da72c368654cb3e9d8c223cef1bece9056a29c4e (patch) | |
tree | f0593fff410dd4bd9fef5dd2ca732ad4430c0f3c /Swift | |
parent | 18b8a82189e7587a9e7af491db1a068a21113ee4 (diff) | |
download | swift-contrib-da72c368654cb3e9d8c223cef1bece9056a29c4e.zip swift-contrib-da72c368654cb3e9d8c223cef1bece9056a29c4e.tar.bz2 |
Comment about scrolling being untrustworthy
Diffstat (limited to 'Swift')
-rw-r--r-- | Swift/QtUI/QtChatView.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Swift/QtUI/QtChatView.cpp b/Swift/QtUI/QtChatView.cpp index 12cae8d..ef558b7 100644 --- a/Swift/QtUI/QtChatView.cpp +++ b/Swift/QtUI/QtChatView.cpp @@ -100,7 +100,8 @@ void QtChatView::addToDOM(boost::shared_ptr<ChatSnippet> snippet) { newInsertPoint_.prependOutside(newElement); } lastElement_ = newElement; - if (bottom /* Or was me? */) { + if (bottom) { + /* Warning: I'm not confident about this.*/ QTimer::singleShot(0, this, SLOT(scrollToBottom())); } } |