Patch 8.2.4599
Problem: GTK: get assertion errors when scrolling a split window.
Solution: Use GDK_IS_DRAWABLE() on the scrollbar window. (closes #9982)
Files: src/gui_gtk.c
*** ../vim-8.2.4598/src/gui_gtk.c 2021-12-27 17:21:38.008449130 +0000
--- src/gui_gtk.c 2022-03-20 15:40:38.641618491 +0000
***************
*** 1107,1113 ****
{
dragging = TRUE;
! if (sb->wp != NULL)
{
int x;
int y;
--- 1107,1113 ----
{
dragging = TRUE;
! if (sb->wp != NULL && GDK_IS_DRAWABLE(sb->id->window))
{
int x;
int y;
*** ../vim-8.2.4598/src/version.c 2022-03-20 13:40:37.309000517 +0000
--- src/version.c 2022-03-20 15:42:42.537626926 +0000
***************
*** 752,753 ****
--- 752,755 ----
{ /* Add new patch number below this line */
+ /**/
+ 4599,
/**/
--
I'd like to meet the man who invented sex and see what he's working on now.
/// 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/20220320154355.754ED1C7833%40moolenaar.net.