We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1582c47 commit dbf0ab6Copy full SHA for dbf0ab6
Resources/scripts/custom-designer-functions.js
@@ -111,6 +111,16 @@ customDesignerFunctions.getCustomFunctionsList = function () {
111
});
112
};
113
114
+customDesignerFunctions.getFirstCustomFunctionName = function () {
115
+ const list = Utils.customFunctionNames;
116
+ if (list.length == 0) {
117
+ console.log("not yey");
118
+ return "ABS" // just none
119
+ }
120
+ list.sort();
121
+ return list[0];
122
+};
123
+
124
customDesignerFunctions.fillWithArraySystemFonts = function () {
125
return vp_fonts.map(val => { return { text: val, value: val }; });
126
0 commit comments