Skip to main content

Topics

This section allows you to view all Topics made by this member. Note that you can only see Topics made in areas you currently have access to.

Topics - thekingmen

1
Otter Browser Forum / duplicate tab on mouse gesture
Old opera could duplicate a tab when doing the mouse gesture down,up. I liked this feature. It appears it's not by default in otter. Also, there does not appear to be a dialog to configure mouse gesture.
So I have read the browser code, and tried to configure a custom gesture for duplicate tab (down, up). Fortunately, code for custom mouse gesture was already there
Interesting file are : GesturesManager.cpp, ActionsManager.h enum ActionIdentifier

So
1. Modify user profile otter.ini. In the Browser section, add in  GestureProfilesOrder your custom profile.
[Browser]
GesturesProfilesOrder=default,mycustom
you need to keep default, to keep the bult-in gesture like new tab, previous etc. I could not find where they are defined.

2. Then, create the subdirectory "gestures" in the profile directory
3. in that directory, create mycustom.ini file
[mycustom]
down,up=CloneTabAction

Restart Otter. Duplicate tab on down-up  :beer: