Skip to content

Commit

Permalink
TIS conversion: Increased available border size up to 64 pixels
Browse files Browse the repository at this point in the history
May help to fix visual artifacts in PST:EE.
  • Loading branch information
Argent77 committed Apr 19, 2024
1 parent 2bbb82c commit 07c767e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/infinity/resource/graphics/TisResource.java
Original file line number Diff line number Diff line change
Expand Up @@ -1360,7 +1360,7 @@ private void initPvrz() {
lBorderSizeLabel.addMouseMotionListener(listeners.mouseMotion);
helpMap.put(lBorderSizeLabel, helpBorderSize);

sBorderSize = new JSlider(0, TisConvert.Config.TILE_SIZE / 2, TisConvert.Config.DEFAULT_BORDER_SIZE);
sBorderSize = new JSlider(0, TisConvert.Config.TILE_SIZE, TisConvert.Config.DEFAULT_BORDER_SIZE);
sBorderSize.addMouseMotionListener(listeners.mouseMotion);
sBorderSize.addChangeListener(listeners.changeBorderSize);
helpMap.put(sBorderSize, helpBorderSize);
Expand Down

0 comments on commit 07c767e

Please sign in to comment.