Page 1 of 1

Hoverable jump text styles fails with tables

Posted: Wed Oct 17, 2012 2:02 pm
by sth2010
Hi,

The following example reproduces an example with hoverable jump text styles inside tables. The five links in the tables does not unhover when mouse cursor is moving outside an hoverable jump text style (se five last links!)

Code: Select all

procedure TForm1.FormCreate(Sender: TObject);
Var Tab : TRVTableItemInfo;
begin
	RichView1.AddNLTag('link1', 4, 0, 'link1');
	RichView1.AddNLTag('link2', 4, 0, 'link2');
	RichView1.AddNLTag('link3', 4, 0, 'link3');
	RichView1.AddNLTag('link4', 4, 0, 'link4');
	RichView1.AddNLTag('link5', 4, 0, 'link5');

	Tab := TRVTableItemInfo.CreateEx(5, 1, RichView1.RVData);
	Tab.Cells[0,0].Clear; Tab.Cells[0,0].AddNLTag('link1', 4, 0, 'link21');
	Tab.Cells[1,0].Clear; Tab.Cells[1,0].AddNLTag('link2', 4, 0, 'link22');
	Tab.Cells[2,0].Clear; Tab.Cells[2,0].AddNLTag('link3', 4, 0, 'link23');
	Tab.Cells[3,0].Clear; Tab.Cells[3,0].AddNLTag('link4', 4, 0, 'link24');
	Tab.Cells[4,0].Clear; Tab.Cells[4,0].AddNLTag('link5', 4, 0, 'link25');
	RichView1.AddItem('tab', Tab);

	RichView1.Format;
end;
Textstyle 4 has jump set and hoverable underlines...! Version of RichView is 13.13.2 (version got from readme.txt)

Is this a bug? Any hotfix available?

Regards,

STH2010[/code]

Posted: Wed Oct 17, 2012 5:46 pm
by Sergey Tkachenko
I confirm the bug. We will upload a new fixed version (or fixing instructions) tomorrow

Posted: Wed Oct 17, 2012 8:08 pm
by sth2010
Thanks a lot for quick response. Appreciated.

-STH2010

Posted: Thu Oct 18, 2012 6:41 pm
by Sergey Tkachenko
The fix appeared to be more complicated than I expected. We will upload a fixed version in this weekend.

Posted: Thu Oct 18, 2012 7:36 pm
by sth2010
Sergey Tkachenko wrote:The fix appeared to be more complicated than I expected. We will upload a fixed version in this weekend.
:-) No problem! Take your time and keep up the good work!

Regards,

STH2010

Posted: Sun Oct 21, 2012 3:11 pm
by Sergey Tkachenko
Fixed in 13.13.3 (available for registered users)

Posted: Sun Oct 21, 2012 3:55 pm
by sth2010
Superb. I'm looking forward to try the new version later this evening.

Thanks for following ip.

Regards,

STH2010