-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
panel: middle click to close window #210
Conversation
@@ -186,6 +186,10 @@ class WayfireToplevel::impl | |||
{ | |||
menu.popup(event->button, event->time); | |||
return true; // It has been handled. | |||
} else if ((event->type == GDK_BUTTON_PRESS) && (event->button == 2)) // middle click |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This probably should only be enabled with an option that is disabled by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks!
* panel: middle click to close window * fix spacing, remove tab * add option * remove include widget.hpp, fix whitespace * move to separate option group * uncrustify
No description provided.