diff --git a/resources/drawables/launcher_icon.png b/resources/drawables/launcher_icon.png old mode 100755 new mode 100644 index d3594e7..cfa517c Binary files a/resources/drawables/launcher_icon.png and b/resources/drawables/launcher_icon.png differ diff --git a/source/RepaFieldView.mc b/source/RepaFieldView.mc index 73052db..61d7167 100644 --- a/source/RepaFieldView.mc +++ b/source/RepaFieldView.mc @@ -216,7 +216,11 @@ class RepaFieldView extends WatchUi.DataField { timerColor = Graphics.COLOR_YELLOW; } timerField.setColor(timerColor); - timerField.setText(trh.format("%02d") + ":" + trm.format("%02d")); + if (trh > 0) { + timerField.setText(trh.format("%d") + ":" + trm.format("%02d")); + } else { + timerField.setText(trm.format("%02d")); + } if (timerSecField != null) { timerSecField.setColor(darken(timerColor, 1.5)); timerSecField.setText(trs.format("%02d"));