diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-02-14 12:16:31 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-02-14 12:16:31 +0100 |
commit | e58f0a4eaa71c6cc5b1c0cb987e18edfe2d6dee7 (patch) | |
tree | 088ccda6199581b4f86e3f9f1dad2c50fa308870 | |
parent | gdb history support (diff) | |
download | rekonq-e58f0a4eaa71c6cc5b1c0cb987e18edfe2d6dee7.tar.xz |
Ensure new tab button is shown on move
BUG:253612
-rw-r--r-- | src/mainview.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index 66c86bc5..e321f486 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -153,6 +153,7 @@ void MainView::updateTabButtonPosition() newPosX = tabWidgetWidth - m_addTabButton->width(); m_addTabButton->move(newPosX, 0); + m_addTabButton->show(); } } |