Skip to content

Commit 4d152e8

Browse files
hansonrhansonr
authored andcommitted
fixes missing cursor on split pane
1 parent 2044506 commit 4d152e8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

sources/net.sf.j2s.java.core/src/swingjs/plaf/JSComponentUI.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -793,8 +793,6 @@ protected void setMenuItem(DOMNode node) {
793793
* Set j2sApplet to capture jQuery mouse events and turn them into Java MouseEvents.
794794
* Used by JSFrameUI and JTextArea to indicate that it is to be the "currentTarget" for mouse
795795
* clicks.
796-
* @param node
797-
* @param isFrame
798796
*/
799797
protected void setJ2sMouseHandler() {
800798
// The DOM attributes applet and _frameViewer are necessary for proper
@@ -2688,6 +2686,7 @@ public void updateCursorImmediately() {
26882686
setHTMLElement();
26892687
String curs = JSToolkit.getCursorName(c.getCursor());
26902688
DOMNode.setStyles(outerNode, "cursor", curs);
2689+
DOMNode.setStyles(domNode, "cursor", curs);
26912690
setWaitImage(curs == "wait");
26922691
}
26932692

0 commit comments

Comments
 (0)