Patch 9.0.1495
Problem: GTK3: hiding the mouse pointer does not work. (Rory O’Kane)
Solution: Set alpha level to zero. (Kenny Stauffer, closes #12293,
closes #3256)
Files: src/gui_gtk_x11.c
*** ../vim-9.0.1494/src/gui_gtk_x11.c 2023-02-21 14:27:34.516360384 +0000
--- src/gui_gtk_x11.c 2023-04-28 16:35:42.536280777 +0100
***************
*** 2682,2688 ****
#endif
GdkCursor *cursor;
#if GTK_CHECK_VERSION(3,0,0)
! GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 };
#else
GdkColor color = { 0, 0, 0, 0 };
char blank_data[] = { 0x0 };
--- 2682,2688 ----
#endif
GdkCursor *cursor;
#if GTK_CHECK_VERSION(3,0,0)
! GdkRGBA color = { 0.0, 0.0, 0.0, 0.0 };
#else
GdkColor color = { 0, 0, 0, 0 };
char blank_data[] = { 0x0 };
*** ../vim-9.0.1494/src/version.c 2023-04-27 21:13:09.184215933 +0100
--- src/version.c 2023-04-28 16:35:37.472270915 +0100
***************
*** 697,698 ****
--- 697,700 ----
{ /* Add new patch number below this line */
+ /**/
+ 1495,
/**/
--
ARTHUR: Be quiet! I order you to shut up.
OLD WOMAN: Order, eh -- who does he think he is?
ARTHUR: I am your king!
OLD WOMAN: Well, I didn't vote for you.
"Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20230428153723.3DEF41C0BF5%40moolenaar.net.