Applied mouse hover patch

This commit is contained in:
mintycube 2024-07-17 08:01:32 +05:00
parent d73301dee5
commit b221ccbc21
2 changed files with 4 additions and 1 deletions

View File

@ -39,6 +39,9 @@ Personal build of dmenu generated using [dmenu-flexipatch](https://github.com/ba
- [mouse-support](https://tools.suckless.org/dmenu/patches/mouse-support/) - [mouse-support](https://tools.suckless.org/dmenu/patches/mouse-support/)
- adds basic mouse support for dmenu - adds basic mouse support for dmenu
- [motion-support](https://tools.suckless.org/dmenu/patches/mouse-support/)
- Expands the above to support mouse hovering.
- [password](https://tools.suckless.org/dmenu/patches/password/) - [password](https://tools.suckless.org/dmenu/patches/password/)
- with this patch dmenu will not directly display the keyboard input, but instead replace it - with this patch dmenu will not directly display the keyboard input, but instead replace it
with dots with dots

View File

@ -143,7 +143,7 @@
/* Expands the above to support mouse hovering. /* Expands the above to support mouse hovering.
* https://tools.suckless.org/dmenu/patches/mouse-support/ * https://tools.suckless.org/dmenu/patches/mouse-support/
*/ */
#define MOTION_SUPPORT_PATCH 0 #define MOTION_SUPPORT_PATCH 1
/* Without this patch when you press Ctrl+Enter dmenu just outputs current item and it is not /* Without this patch when you press Ctrl+Enter dmenu just outputs current item and it is not
* possible to undo that. * possible to undo that.