Mouse freezes with tables in some cases

General TRichView support forum. Please post your questions here
Post Reply
sysmeht
Posts: 2
Joined: Thu Aug 28, 2008 8:05 am

Mouse freezes with tables in some cases

Post by sysmeht »

Hi, I found that sometimes the mouse freezes when entering text into a table. The problem is intermittent, but I found away to reproduce it in RichView Action demo application (TRichView 14.5):
- create a new document
- add a 2x2 table
- click on the top-left cell
- press 'a' on keyboard and keep pressing, letters are written into top-left cell
- click into top-right cell, still pressing 'a'
- click into top-left cell, still pressing 'a'
- release 'a'
This stage the editor does not take the mouse clicks anymore, but the application is not frozen. This sometimes happens even with normal typing into cells.

Please check if you can reproduce the issue.

Thanks in advance!
Sergey Tkachenko
Site Admin
Posts: 17557
Joined: Sat Aug 27, 2005 10:28 am
Contact:

Post by Sergey Tkachenko »

I confirm the problem.
This bug was added in version 14.5.0

A quick fix:
Open RVERVData.pas, change

Code: Select all

LastDIMovedAbove := -1;
to

Code: Select all

  if CaptureMouseItem=nil then
    LastDIMovedAbove := -1;
sysmeht
Posts: 2
Joined: Thu Aug 28, 2008 8:05 am

Post by sysmeht »

Thanks for the quick fix, I can confirm that it works!

Best wishes!
Post Reply