|
@@ -177,9 +177,9 @@ export class MainAreaWidget<T extends Widget = Widget> extends Widget
|
|
|
const content = this.content;
|
|
|
this.title.label = content.title.label;
|
|
|
this.title.mnemonic = content.title.mnemonic;
|
|
|
+ this.title.icon = content.title.icon;
|
|
|
this.title.iconClass = content.title.iconClass;
|
|
|
this.title.iconLabel = content.title.iconLabel;
|
|
|
- this.title.iconRenderer = content.title.iconRenderer;
|
|
|
this.title.caption = content.title.caption;
|
|
|
this.title.className = content.title.className;
|
|
|
this.title.dataset = content.title.dataset;
|
|
@@ -197,9 +197,9 @@ export class MainAreaWidget<T extends Widget = Widget> extends Widget
|
|
|
const content = this.content;
|
|
|
content.title.label = this.title.label;
|
|
|
content.title.mnemonic = this.title.mnemonic;
|
|
|
+ content.title.icon = this.title.icon;
|
|
|
content.title.iconClass = this.title.iconClass;
|
|
|
content.title.iconLabel = this.title.iconLabel;
|
|
|
- content.title.iconRenderer = this.title.iconRenderer;
|
|
|
content.title.caption = this.title.caption;
|
|
|
content.title.className = this.title.className;
|
|
|
content.title.dataset = this.title.dataset;
|