diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-11-26 17:20:15 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-12-10 02:48:06 +0100 |
commit | 9bf2bbe9bb14425ef228c8e1689bbd14935cac48 (patch) | |
tree | db8ff5863de372d77090a877bb7a0589a01eb1d7 /src/tabwindow/tabwindow.cpp | |
parent | Add an home page tab when rekonq is started with some pinned tabs (diff) | |
download | rekonq-9bf2bbe9bb14425ef228c8e1689bbd14935cac48.tar.xz |
Fix tabs moves when some of them are pinned
Diffstat (limited to 'src/tabwindow/tabwindow.cpp')
-rw-r--r-- | src/tabwindow/tabwindow.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tabwindow/tabwindow.cpp b/src/tabwindow/tabwindow.cpp index 4925f8d9..60a9a0eb 100644 --- a/src/tabwindow/tabwindow.cpp +++ b/src/tabwindow/tabwindow.cpp @@ -369,6 +369,10 @@ void TabWindow::tabLoadStarted() if (!tabBar()->tabData(index).toBool()) tabBar()->setTabText(index, i18n("Loading...")); + else + { + tabBar()->tabButton(index, QTabBar::RightSide)->hide(); // NOTE: not really good this, but..."Repetita iuvant"!!! + } } } |