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/tabbar.h | |
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/tabbar.h')
-rw-r--r-- | src/tabwindow/tabbar.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tabwindow/tabbar.h b/src/tabwindow/tabbar.h index 292f3d6d..b325eab8 100644 --- a/src/tabwindow/tabbar.h +++ b/src/tabwindow/tabbar.h @@ -60,8 +60,11 @@ protected: virtual void mouseMoveEvent(QMouseEvent *event); virtual void leaveEvent(QEvent *event); virtual void mousePressEvent(QMouseEvent *event); + virtual void mouseReleaseEvent(QMouseEvent *event); + virtual void tabInserted(int index); virtual void tabRemoved(int index); + virtual void tabLayoutChange(); Q_SIGNALS: @@ -89,7 +92,7 @@ private Q_SLOTS: void showTabPreview(); void hideTabPreview(); - + private: // highlightAnimation TabHighlightEffect *m_tabHighlightEffect; |