ATI_WORKAROUND without command promt

I’ve got an application that currently has several bugs but only on ATI cards, so I’d like to give the ATI_WORKAROUND a try and see if that does anything, but it’s on a client computer and I can’t have him working on the command prompt because lets face it, people are scared of the darn thing. So is there a way to FORCE it on within the CODE?? I think it’s called JOGL_SINGLE_THREADED_WORKAROUND now, so is there some property I can set in the capabilities chooser or somewhere? Not everyone can use command line fixes.

Have you tried :

public static String setProperty(String key,
String value)

?

I just tried

System.setProperty(“JOGL_SINGLE_THREADED_WORKAROUND”, “true”);

And it didn’t actually change anything

Stange thing, have you put this call before any Jogl init?

Edit : Never mind i’ve seen the other thread…