I've had these issues before with the repository version. I would also get crashes when selecting fonts.
My resolution was simply compiling from source and those went away. Until....
The latest release, I had an issue with GIFImage.cpp failing to compile.
After changing:
_gifSize = wxSize(max(_gifSize.GetWidth(), its->GetWidth() + ito->x),
+ max(_gifSize.GetHeight(), its->GetHeight() + ito->y));to:
_gifSize = wxSize((_gifSize.GetWidth(), its->GetWidth() + ito->x),
+ (_gifSize.GetHeight(), its->GetHeight() + ito->y));I was able to successfully build it with out errors:
effects/GIFImage.cpp:131:88: error: ‘max’ cannot be used as a function
_gifSize = wxSize(max(_gifSize.GetWidth(), its->GetWidth() + ito->x),
^
effects/GIFImage.cpp:132:76: error: ‘max’ cannot be used as a function
max(_gifSize.GetHeight(), its->GetHeight() + ito->y));
And so far, it seems that the Animated GIFs are doing OK on a couple of tests. Not sure what the max changes here from the coders intentions, but it is what it is and what allowed me to compile without errors and execute the program.
I should note that I pulled the code around 6pm PDT, which showed the last update was about 18 hours prior.
-Tim
EDIT : Running Linux -> Mint 19 Mate (Based on Ubuntu 18.04) and just a blurb that I thought may be useful?
