diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-05-01 01:58:29 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-05-01 01:58:29 +0200 |
commit | 070aabd69a693acefb8fbd152c467bace3600a67 (patch) | |
tree | b925c5c23db500e2b3deca37e801681670db640b /src/mainview.cpp | |
parent | i18n plural bugs. Courtesy patch of Kristol Baf (diff) | |
download | rekonq-070aabd69a693acefb8fbd152c467bace3600a67.tar.xz |
mouseDoubleClickEvent return, as decided with Avaddon
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r-- | src/mainview.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index bb016872..d6b86452 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -694,3 +694,13 @@ QLabel *MainView::animatedLoading(int index, bool addMovie) return label; } + +void MainView::mouseDoubleClickEvent(QMouseEvent *event) +{ + if (!childAt(event->pos())) + { + newWebView(true); + return; + } + KTabWidget::mouseDoubleClickEvent(event); +}
\ No newline at end of file |