Fix change font regression

This commit is contained in:
Paulo Gustavo Veiga 2022-01-08 16:02:48 -08:00
parent a0a5beb2ec
commit 934d127012
3 changed files with 16 additions and 23 deletions

View File

@ -55,6 +55,7 @@ import NodeModel from './model/NodeModel';
import Topic from './Topic';
import Point from '@wisemapping/web2d';
import { DesignerOptions } from './DesignerOptions';
import MainTopic from './MainTopic';
class Designer extends Events {
private _mindmap: Mindmap;
@ -227,14 +228,7 @@ class Designer extends Events {
this._workspace.setZoom(model.getZoom(), true);
}
/**
* @private
* @param {mindplot.model.NodeModel} model
* @param {Boolean} readOnly
* @return {mindplot.CentralTopic|mindplot.MainTopic} the topic to the given model,
* connected, added to the drag manager, with events registered - complying type & read mode
*/
_buildNodeGraph(model: NodeModel, readOnly: boolean) {
private _buildNodeGraph(model: NodeModel, readOnly: boolean): MainTopic {
// Create node graph ...
const topic = create(model, { readOnly });
this.getModel().addTopic(topic);
@ -344,10 +338,6 @@ class Designer extends Events {
this._workspace.setZoom(zoom);
}
/**
* @param {Number=} factor
* zoom out by the given factor, or 1.2, if undefined
*/
zoomOut(factor: number = 1.2) {
const model = this.getModel();
const scale = model.getZoom() * factor;

View File

@ -40,7 +40,7 @@ class DesignerModel extends Events {
}
/** @param {Number} zoom number between 0.3 and 1.9 to set the zoom to */
setZoom(zoom) {
setZoom(zoom:number) {
this._zoom = zoom;
}

View File

@ -27,11 +27,14 @@ class ListToolbarPanel extends ToolbarPaneItem {
_initPanel() {
// Register on toolbar elements ...
this.getPanelElem().children('div').bind('click', (event) => {
const me = this;
this.getPanelElem()
.children('div')
.bind('click', function click(event) {
event.stopPropagation();
this.hide();
me.hide();
const value = $defined($(this).attr('model')) ? $(this).attr('model') : $(this).attr('id');
this.getModel().setValue(value);
me.getModel().setValue(value);
});
}