Fix savegame crash

pull/33/head
tobspr 4 years ago
parent a2b1342f55
commit b05182a1cc

@ -851,7 +851,7 @@ export function formatSecondsToTimeAgo(secs) {
if (hours <= 1) {
return "one hour ago";
}
return hours + " hour ago";
return hours + " hours ago";
} else {
if (days <= 1) {
return "one day ago";

@ -29,7 +29,7 @@ export class ColorItem extends BaseItem {
constructor(color) {
super();
this.color = color;
this.bufferGenerator = this.internalGenerateColorBuffer.bind(this);
this.bufferGenerator = null;
}
getBackgroundColorAsResource() {
@ -43,6 +43,10 @@ export class ColorItem extends BaseItem {
* @param {DrawParameters} parameters
*/
draw(x, y, parameters, size = 12) {
if (!this.bufferGenerator) {
this.bufferGenerator = this.internalGenerateColorBuffer.bind(this);
}
const dpi = smoothenDpi(globalConfig.shapesSharpness * parameters.zoomLevel);
const key = size + "/" + dpi;

Loading…
Cancel
Save