From 945a436eb237feace2a69d784c5505de7a3b1867 Mon Sep 17 00:00:00 2001 From: yflory Date: Tue, 29 Sep 2020 17:15:26 +0200 Subject: [PATCH] Fix readonly issue in history mode --- www/common/sframe-app-framework.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/sframe-app-framework.js b/www/common/sframe-app-framework.js index b66294416..92e42616c 100644 --- a/www/common/sframe-app-framework.js +++ b/www/common/sframe-app-framework.js @@ -883,7 +883,7 @@ define([ onEditableChange: evEditableStateChange.reg, // Determine whether the UI should be locked for editing. - isLocked: function () { return state !== STATE.READY; }, + isLocked: function () { return state !== STATE.READY || unsyncMode; }, // Determine whether the pad is a "read only" pad and cannot be changed. isReadOnly: function () { return readOnly; },