From 8edd70c5bbce2f6fbf63df00feb0132702db0813 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Stra=C3=9Fburger?= Date: Sun, 30 Apr 2017 00:09:28 +0200 Subject: [PATCH] :art: moving onDraw to onUpdate --- src/Mapscii.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mapscii.coffee b/src/Mapscii.coffee index ecd35b1..5a6d3b2 100644 --- a/src/Mapscii.coffee +++ b/src/Mapscii.coffee @@ -184,7 +184,6 @@ module.exports = class Mapscii #@notify JSON.stringify key _draw: -> - config.onDraw() if config.onDraw @renderer .draw @center, @zoom .then (frame) => @@ -209,6 +208,7 @@ module.exports = class Mapscii "mouse: #{utils.digits @mousePosition.lat, 3}, #{utils.digits @mousePosition.lon, 3} " notify: (text) -> + config.onUpdate() if config.onUpdate @_write "\r\x1B[K"+text unless config.headless _write: (output) ->