Commit ee09eac4 authored by Julia Radzhabova's avatar Julia Radzhabova

[DE] Толщина границ по-умолчанию выставлена в 0,5pt (по просьбе отд. проектирования).

parent ce7957d7
......@@ -218,7 +218,7 @@ define([
el: $('#table-combo-border-size'),
style: "width: 93px;"
});
this.BorderSize = this.cmbBorderSize.store.at(2).get('value');
this.BorderSize = this.cmbBorderSize.store.at(1).get('value');
this.cmbBorderSize.setValue(this.BorderSize);
this.cmbBorderSize.on('selected', _.bind(this.onBorderSizeSelect, this));
this.lockedControls.push(this.cmbBorderSize);
......
......@@ -869,7 +869,7 @@ define([ 'text!documenteditor/main/app/template/TableSettingsAdvanced.templat
el: $('#tableadv-combo-border-size'),
style: "width: 93px;"
});
var rec = this.cmbBorderSize.store.at(2);
var rec = this.cmbBorderSize.store.at(1);
this.BorderSize = {ptValue: rec.get('value'), pxValue: rec.get('pxValue')};
this.cmbBorderSize.setValue(this.BorderSize.ptValue);
this.cmbBorderSize.on('selected', _.bind(this.onBorderSizeSelect, this));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment