diff options
| author | Joakim Verona | 2011-08-10 10:48:13 +0200 |
|---|---|---|
| committer | Joakim Verona | 2011-08-10 10:48:13 +0200 |
| commit | f49bb00c8056c4590910dbb9928c84cb18431a8a (patch) | |
| tree | 5992f00508577e0ecb608f90ed4b25f72067c02f /src | |
| parent | fbe9606448e83b91187a7589dd307c2112dfc593 (diff) | |
| download | emacs-f49bb00c8056c4590910dbb9928c84cb18431a8a.tar.gz emacs-f49bb00c8056c4590910dbb9928c84cb18431a8a.zip | |
found a way to inhibit blit scrolling which restores proper xwidget movement
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispnew.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/dispnew.c b/src/dispnew.c index b4d2dc2334a..4cffc32b0d7 100644 --- a/src/dispnew.c +++ b/src/dispnew.c | |||
| @@ -4295,6 +4295,12 @@ scrolling_window (struct window *w, int header_line_p) | |||
| 4295 | break; | 4295 | break; |
| 4296 | } | 4296 | } |
| 4297 | 4297 | ||
| 4298 | #ifdef HAVE_XWIDGETS | ||
| 4299 | //currently this is needed to detect xwidget movement reliably. or probably not. | ||
| 4300 | printf("scrolling_window\n"); | ||
| 4301 | return 0; | ||
| 4302 | #endif | ||
| 4303 | |||
| 4298 | /* Give up if some rows in the desired matrix are not enabled. */ | 4304 | /* Give up if some rows in the desired matrix are not enabled. */ |
| 4299 | if (!MATRIX_ROW (desired_matrix, i)->enabled_p) | 4305 | if (!MATRIX_ROW (desired_matrix, i)->enabled_p) |
| 4300 | return -1; | 4306 | return -1; |