Compare commits

..

No commits in common. "47206f0fd8396d5fa1fec54174e0d323f24714cd" and "9fef0c209d01d88d9dd3e89549dd48bcf43a6b8d" have entirely different histories.

2 changed files with 2 additions and 8 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.1-SNAPSHOT
version=1.9.0
# Dependency versions
shkVersion=1.2.2

View File

@ -297,13 +297,7 @@ 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;