We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7da9cea commit a8ab1e9Copy full SHA for a8ab1e9
sources/net.sf.j2s.java.core/src/java/applet/JSApplet.java
@@ -28,6 +28,7 @@
28
package java.applet;
29
30
import java.awt.Component;
31
+import java.awt.Dialog;
32
import java.awt.Dimension;
33
import java.awt.HeadlessException;
34
import java.awt.Image;
@@ -97,6 +98,12 @@ public boolean isFocusableWindow() {
97
98
return true;
99
}
100
101
+ public Dialog getModalBlocker() {
102
+ // mascarading as Window here
103
+ return null; //??
104
+ }
105
+
106
107
/**
108
* Holds the reference to the component which last had focus in this window
109
* before it lost focus.
0 commit comments