Fix isReadonly being inverted for custom editors

For #96503

This should enable the revert command on windows
This commit is contained in:
Matt Bierner
2020-05-28 22:18:18 -07:00
parent 6cc7c45203
commit 03cbe60992

View File

@@ -722,7 +722,7 @@ class MainThreadCustomEditorModel extends Disposable implements ICustomEditorMod
//#endregion
public isReadonly() {
return this._editable;
return !this._editable;
}
public get viewType() {