Compare commits

...

2 Commits

Author SHA1 Message Date
Rob Greene 47206f0fd8 Attempted patch for issue #89 2023-11-01 18:01:12 -05:00
Rob Greene f642d1451d Next snapshot version. 2023-11-01 18:00:33 -05:00
2 changed files with 8 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# Universal AppleCommander version number. Used for:
# - Naming JAR file.
# - The build will insert this into a file that is read at run time as well.
version=1.9.0
version=1.9.1-SNAPSHOT
# Dependency versions
shkVersion=1.2.2

View File

@ -297,7 +297,13 @@ public class DiskMapTab {
xpos[i] = (i * area.width) / xdim + 1;
}
xpos[xdim] = area.width;
if (area.width <= 0 || area.height <= 0) {
// patch for issue #89
// based on stack trace it appears the bounds area may be invalid
// under some circumstances
return;
}
Image image = new Image(canvas.getDisplay(), area);
GC gc = new GC(image);
int x = 0;