diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-04-25 01:12:46 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-04-25 01:12:46 +0200 |
commit | 1b3a783526e31dee06229bc8b877b889dec3ef98 (patch) | |
tree | 1d4ed311e6a45245665f76f92cd1d90eb4012ac3 /src | |
parent | rekonq 0.4.64 (diff) | |
download | rekonq-1b3a783526e31dee06229bc8b877b889dec3ef98.tar.xz |
Fixing new tab action position
Diffstat (limited to 'src')
-rw-r--r-- | src/mainview.cpp | 5 |
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); } } |