1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-11 01:22:10 +01:00

MouseGestures: Fixed loading correct page when opening new tab.

- loading page according to user preferences on new tab
   = eg. speed dial, blank tab, specified url, ...
This commit is contained in:
nowrep 2012-09-08 19:46:19 +02:00
parent a79522be4d
commit ac83b5bac6
2 changed files with 2 additions and 2 deletions

View File

@ -117,7 +117,7 @@ void MouseGestures::downGestured()
return;
}
m_view.data()->openUrlInNewTab(QUrl(), Qz::NT_CleanSelectedTabAtTheEnd);
m_view.data()->openUrlInNewTab(QUrl(), Qz::NT_SelectedTabAtTheEnd);
}
void MouseGestures::leftGestured()

View File

@ -35,7 +35,7 @@ PluginSpec MouseGesturesPlugin::pluginSpec()
spec.name = "Mouse Gestures";
spec.info = "Mouse gestures for QupZilla";
spec.description = "Provides support for navigating in webpages by mouse gestures";
spec.version = "0.3.1";
spec.version = "0.3.2";
spec.author = "David Rosca <nowrep@gmail.com>";
spec.icon = QPixmap(":/mousegestures/data/icon.png");
spec.hasSettings = true;