Tee Chart Causes Crash When Resizing Form Under 64-bit Mac App
Tee Chart Causes Crash When Resizing Form Under 64-bit Mac App
I have a Firemonkey Mac app that I recently upgraded to the 64-bit version, it previously worked fine with the 32-bit version. I have a form with a tee chart in it that presents just fine, but when I resize the form, the entire app crashes with an access violation. I can resize the tee chart component within the form no problem, as it is in a TPanel with a splitter, the problem only occurs when resizing the entire form using the edges of the window as a handle with the mouse. Any help appreciated.
Re: Tee Chart Causes Crash When Resizing Form Under 64-bit Mac App
Hello,
I've reproduced the problem so I've added it to the public tracker:
http://bugs.teechart.net/show_bug.cgi?id=2263
Thanks for reporting it.
I've reproduced the problem so I've added it to the public tracker:
http://bugs.teechart.net/show_bug.cgi?id=2263
Thanks for reporting it.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Tee Chart Causes Crash When Resizing Form Under 64-bit Mac App
Hi
Hopefully this can be fixed soon
just having a tchart on a blank form and when that is resized on 64 bit OSX it crashes (32 bit does not and 64 it linux its OK)
I suspect its likely a fault with the compiler as well?
as setting the tchart to not visible there is no crash
Brian
Hopefully this can be fixed soon
just having a tchart on a blank form and when that is resized on 64 bit OSX it crashes (32 bit does not and 64 it linux its OK)
I suspect its likely a fault with the compiler as well?
as setting the tchart to not visible there is no crash
Brian
Re: Tee Chart Causes Crash When Resizing Form Under 64-bit Mac App
i discovered the problem does not occur with the lite version of tchart (the one that comes with Delphi)
Re: Tee Chart Causes Crash When Resizing Form Under 64-bit Mac App
Hello,
This is just to let you know we've just fixed the bug under MacOS64 and closed the ticket #2263
This is just to let you know we've just fixed the bug under MacOS64 and closed the ticket #2263
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Tee Chart Causes Crash When Resizing Form Under 64-bit Mac App
Hi
great
is there a download for this fix or a patch I can apply or can I edit the source code myself?
thanks!
Brian
great
is there a download for this fix or a patch I can apply or can I edit the source code myself?
thanks!
Brian
Re: Tee Chart Causes Crash When Resizing Form Under 64-bit Mac App
Sure, for those owning the sources, you can add an "IFNDEF MACOS64" at TeeCanvas.pas (line 66) to avoid defining "HASCANVASGPU" for that platform:
Don't forget to run TeeRecompile to build the sources and apply the modification.
Code: Select all
{$IFDEF D18}
{$IFNDEF MACOS64}
{$DEFINE HASCANVASGPU}
{$ENDIF}
{$ENDIF}
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |