summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-04-25 01:12:46 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-04-25 01:12:46 +0200
commit1b3a783526e31dee06229bc8b877b889dec3ef98 (patch)
tree1d4ed311e6a45245665f76f92cd1d90eb4012ac3 /src
parentrekonq 0.4.64 (diff)
downloadrekonq-1b3a783526e31dee06229bc8b877b889dec3ef98.tar.xz
Fixing new tab action position
Diffstat (limited to 'src')
-rw-r--r--src/mainview.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp
index 63c10683..fa834af6 100644
--- a/src/mainview.cpp
+++ b/src/mainview.cpp
@@ -150,10 +150,7 @@ void MainView::updateTabButtonPosition()
if (tabWidthHint < sizeHint().width()/4)
newPosX = tabWidgetWidth - m_addTabButton->width();
- // Y position is fixed
- // Here I noticed with some emphiric valutations ( :D )
- // that 2 look better than 0, just that..
- m_addTabButton->move(newPosX, 2);
+ m_addTabButton->move(newPosX, 0);
}
}