Bug 1318 - JoglPipeline uses new Frame for capabilities capture, this appears on the taskbar briefly
Summary: JoglPipeline uses new Frame for capabilities capture, this appears on the tas...
Status: RESOLVED FIXED
Alias: None
Product: Java3D
Classification: General
Component: core (show other bugs)
Version: 2.4.0
Hardware: All all
: P4 trivial
Assignee: Phil Jordan
URL:
Depends on:
Blocks:
 
Reported: 2016-07-26 12:49 CEST by Phil Jordan
Modified: 2019-03-29 14:19 CET (History)
1 user (show)

See Also:
Type: DEFECT
SCM Refs:
Workaround: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Phil Jordan 2016-07-26 12:49:13 CEST
the 2 usages of new Frame() should be replace by

Dialog f = new Dialog(new Frame());
Dialog f = new Dialog(new Frame(), null, false, device.getDefaultConfiguration());
respectively.


This will ensure no taskbar icon flashes on the desktop.

Trivial tests seem to show that the QueryCanvas is able to work on a Dialog as well as a Frame.
Comment 1 Julien Gouesse 2016-07-26 14:23:18 CEST
I suggest to do this change in Java3D 1.7.0.
Comment 2 Phil Jordan 2016-10-30 23:02:51 CET
change as specified