[DE Mobile] disable editing for fill forms and commenting when no license (Bug 54910)
This commit is contained in:
parent
8d36662f15
commit
743cd8a42a
|
@ -558,10 +558,10 @@ class MainController extends Component {
|
|||
storeDocumentSettings.changeDocSize(w, h);
|
||||
});
|
||||
|
||||
const storeAppOptions = this.props.storeAppOptions;
|
||||
|
||||
if (storeAppOptions.isEdit || storeAppOptions.isRestrictedEdit && storeAppOptions.canFillForms) {
|
||||
this.api.asc_registerCallback('asc_onShowContentControlsActions', (obj, x, y) => {
|
||||
const storeAppOptions = this.props.storeAppOptions;
|
||||
if (!storeAppOptions.isEdit && !(storeAppOptions.isRestrictedEdit && storeAppOptions.canFillForms) || this.props.users.isDisconnected) return;
|
||||
|
||||
switch (obj.type) {
|
||||
case Asc.c_oAscContentControlSpecificType.DateTime:
|
||||
this.onShowDateActions(obj, x, y);
|
||||
|
@ -583,7 +583,6 @@ class MainController extends Component {
|
|||
break;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
const storeTextSettings = this.props.storeTextSettings;
|
||||
storeTextSettings.resetFontsRecent(LocalStorage.getItem('dde-settings-recent-fonts'));
|
||||
|
|
Loading…
Reference in a new issue