mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2024-12-21 01:30:34 +00:00
Attempted patch for issue #89
This commit is contained in:
parent
f642d1451d
commit
47206f0fd8
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user