diff options
author | Yoann Laissus <yoann.laissus@gmail.com> | 2010-10-20 09:29:14 +0200 |
---|---|---|
committer | Yoann Laissus <yoann.laissus@gmail.com> | 2010-10-20 09:32:23 +0200 |
commit | 7570ac569271753a5956b50de4fb3f950376eca2 (patch) | |
tree | 78f7a7214a0ba770802bfa66cdfab45f9df11d5c /src/tabbar.cpp | |
parent | Merge branch 'master' of git.kde.org:rekonq (diff) | |
download | rekonq-7570ac569271753a5956b50de4fb3f950376eca2.tar.xz |
Fix icons duplication in the urlbar if a bookmark is added during a page loading
Diffstat (limited to 'src/tabbar.cpp')
-rw-r--r-- | src/tabbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabbar.cpp b/src/tabbar.cpp index 1756c20e..0866bfd8 100644 --- a/src/tabbar.cpp +++ b/src/tabbar.cpp @@ -166,7 +166,7 @@ void TabBar::showTabPreview() return; // no previews during load - if (indexedTab->progress() != 0) + if (indexedTab->isPageLoading()) return; int w = tabSizeHint(m_currentTabPreviewIndex).width(); |