diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-06-03 17:00:22 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-06-03 17:00:22 +0200 |
commit | 366e6548a6a7c0975bac270eeaf03ec1d3940782 (patch) | |
tree | deeb15feaf3ad02e7ea8f5a2255f4a47e4a6cbfe /src/tabbar.h | |
parent | Added credits :) (diff) | |
download | rekonq-366e6548a6a7c0975bac270eeaf03ec1d3940782.tar.xz |
200 ms of delay showing tab previews
BUG:224276
@Christoph
Feel free to open a new bug against the link delays, explaining why
you think it's important.
We'll be happy to debate a bit about it, again :)
Diffstat (limited to 'src/tabbar.h')
-rw-r--r-- | src/tabbar.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/tabbar.h b/src/tabbar.h index af3c537b..488de4b2 100644 --- a/src/tabbar.h +++ b/src/tabbar.h @@ -91,9 +91,9 @@ private slots: void contextMenu(int, const QPoint &); void emptyAreaContextMenu(const QPoint &); -private: - void showTabPreview(int tab); + void showTabPreview(); +private: friend class MainView; /** @@ -102,7 +102,11 @@ private: int m_actualIndex; QWeakPointer<KPassivePopup> m_previewPopup; - int m_currentTabPreview; + + /** + * the index of the tab preview shown + */ + int m_currentTabPreviewIndex; }; #endif |