mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
add support for explicit calls to ace.setFontSize
- found node-red-contrib-ui-svg explicitly calling ace function
This commit is contained in:
parent
251dda3652
commit
1acb073737
@ -41,6 +41,7 @@
|
|||||||
function gotoLine(row, col)
|
function gotoLine(row, col)
|
||||||
function getCursorPosition()
|
function getCursorPosition()
|
||||||
function setTheme(name)
|
function setTheme(name)
|
||||||
|
function setFontSize(size:Number) //Set a new font size (in pixels) for the editor text.
|
||||||
function on(name, cb)
|
function on(name, cb)
|
||||||
function getUndoManager()
|
function getUndoManager()
|
||||||
|
|
||||||
@ -1183,6 +1184,9 @@ RED.editor.codeEditor.monaco = (function() {
|
|||||||
o.isClean = isClean.bind(ed);
|
o.isClean = isClean.bind(ed);
|
||||||
return o;
|
return o;
|
||||||
}
|
}
|
||||||
|
ed.setFontSize = function setFontSize(size) {
|
||||||
|
ed.updateOptions({ fontSize: size });
|
||||||
|
}
|
||||||
//#endregion "ACE compatability"
|
//#endregion "ACE compatability"
|
||||||
|
|
||||||
//final setup
|
//final setup
|
||||||
|
Loading…
Reference in New Issue
Block a user