Michael Ennen

Results 175 comments of Michael Ennen

Found this little nugget in JavaFX source code: RT30650GUI.java: ```java public boolean testColor(Stage stage) { int x = (int)stage.getX(); int y = (int)stage.getY(); final int rgb[] = new int[1]; runAndWait(()...

Some Objective-C code from WebKit that changes color profiles (for the same reasons we want to): https://github.com/WebKit/webkit/blob/master/Tools/DumpRenderTree/mac/LayoutTestHelper.m I will try and do this color profile setting in the `GlassRobot.m` implementation...

Changing the color profile as part of `GlassRobot.m` is almost certainly out of scope for the initial work of moving the Robot to the public API, but hopefully it will...

Ping @hastebrot The robot can be changed by changing the `testfx.robot` property. The question is, does setting the `testfx.robot` property to `glass` for non-headless builds make any sense? I am...

Is the only reason you are using a custom MoveRobot because the TestFX one sometimes throws NPE? Or is there another reason? If it's because of the occasional NPE we...

PR welcome. Although currently the CI infrastructure is broken so it will be a less than ideal experience. I've been somewhat neglectful of keeping the CI stuff up to date,...

This may be: https://github.com/TestFX/TestFX/issues/639 I am not sure what's going on with drag and drop issues - don't have a lot of time to investigate, sadly.

Couple comments, thank you for the PR!

@ianbrandt Would you be interested in making the requested changes and submitting a new PR? Can add Helped-by: @bjalon for credit purposes.