You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var copyActionButton = new FloatingActionButton(MaterialDesignIcon.CONTENT_COPY.text, e -> {
var image = this.getCenter().snapshot(null, null);
var content = new ClipboardContent();
content.putImage(image);
Clipboard.getSystemClipboard().setContent(content);
});
copyActionButton.showOn(this);
Placing an image on the Clipboard causes app to crash on iOS simulator or iPad (but works fine on MacBookPro).
To reproduce, add a copy button to the gluon-samples DoddleTrace.java using these lines:
Start the App:
mvn -Pios-sim gluonfx:build gluonfx:package gluonfx:install gluonfx:nativerun
When running, press the copy button. The app closes down and something like this appears in the
console:
[Thu Jan 11 21:43:05 CET 2024][INFO] [SUB] com.gluonhq.samples.doodle-trace: 85415
The crash log contains this:
Termination Reason: SIGNAL 11 Segmentation fault: 11
The text was updated successfully, but these errors were encountered: