From 7259389a3c16604f2142f21d67d928180950bcfa Mon Sep 17 00:00:00 2001 From: Samuel Mannehed Date: Sat, 7 Jan 2017 17:11:31 +0100 Subject: Fix rfb._cleanup() Restore display.get_context() which was previously removed in e549ae074fcea9febde32c0fa260a64c15cc1b8e. --- core/display.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/display.js b/core/display.js index ac2e1e5..26e0b91 100644 --- a/core/display.js +++ b/core/display.js @@ -553,6 +553,10 @@ }, // Overridden getters/setters + get_context: function () { + return this._drawCtx; + }, + set_scale: function (scale) { this._rescale(scale); }, -- cgit v1.2.1