BlankZeroFormatter now returns an empty NSString instead of nil, which was causing an unhandled exception that locked up the window

This commit is contained in:
Chris Moeller 2013-09-29 17:30:23 -07:00
parent d8787c2016
commit 83d59d0c13

View file

@ -24,6 +24,8 @@
if (value)
result = [NSString stringWithFormat:@"%i", value];
else
result = [NSString string];
return result;
}