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 3582de1 commit 76819deCopy full SHA for 76819de
Resources/scripts/custom-designer-functions.js
@@ -243,7 +243,18 @@ customDesignerFunctions.init = function () {
243
} catch (error) {
244
console.warn("Add custom functions to the custom dynamic section: ", error.message);
245
}
246
-
+
247
+ template = GC.Spread.Sheets.Designer.getTemplate(TemplateNames.FormatDialogTemplate);
248
+ try {
249
+ if(template.content[0].width<720)
250
+ {
251
+ template.content[0].width = 720;
252
+ }
253
+ GC.Spread.Sheets.Designer.registerTemplate(TemplateNames.FormatDialogTemplate, template);
254
+ } catch (error) {
255
+ console.warn("Change format dialog width failed: ", error.message);
256
257
258
259
// todo localize stuff here?
260
};
0 commit comments