Skip to content

Commit

Permalink
Fix token editor pick VBL color cursor working once
Browse files Browse the repository at this point in the history
- Fix VBL color cursor not longing changing to the crosshair cursor after being used once
- Issue discussed in RPTools#1218
  • Loading branch information
Merudo committed Apr 14, 2020
1 parent 24fd334 commit c606574
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1284,7 +1284,7 @@ public void initVblPreviewPanel() {
getTokenVblPanel().updateUI();

if (getVblColorPickerToggleButton().isSelected()) {
getTokenVblPanel().setCursor(new Cursor(Cursor.CROSSHAIR_CURSOR));
getTokenVblPanel().setCursor(Cursor.getPredefinedCursor(Cursor.CROSSHAIR_CURSOR));
} else {
getTokenVblPanel().setCursor(Cursor.getDefaultCursor());
}
Expand Down

0 comments on commit c606574

Please sign in to comment.