Skip to content

Commit b20672f

Browse files
committed
fix for HtmlEditorKit CTRL-A not functional,
90% anchor menuitem,
1 parent 6b84ca8 commit b20672f

File tree

6 files changed

+3
-3
lines changed

6 files changed

+3
-3
lines changed
171 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20200313123132
1+
20200314141453
171 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20200313123132
1+
20200314141453
171 Bytes
Binary file not shown.

sources/net.sf.j2s.java.core/srcjs/swingjs2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13802,7 +13802,7 @@ if (ev.keyCode == 9 && ev.target["data-focuscomponent"]) {
1380213802
if (!node.ui.jc.modal && modalZ < 1e10 && z > modalZ) {
1380313803
z = modalZ - 500;
1380413804
}
13805-
node.ui.outerNode.style.zIndex = z;
13805+
node.ui.outerNode && (node.ui.outerNode.style.zIndex = z);
1380613806
return z;
1380713807
}
1380813808

0 commit comments

Comments
 (0)