BlankZeroFormatter now returns an empty NSString instead of nil, which was causing an unhandled exception that locked up the window
parent
d8787c2016
commit
83d59d0c13
|
@ -24,6 +24,8 @@
|
||||||
|
|
||||||
if (value)
|
if (value)
|
||||||
result = [NSString stringWithFormat:@"%i", value];
|
result = [NSString stringWithFormat:@"%i", value];
|
||||||
|
else
|
||||||
|
result = [NSString string];
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue