提交 39c9f26e 编写于 作者: B Benjamin Pasero

always apply zoom fast before watcher kicks in

上级 59e53464
......@@ -224,15 +224,17 @@ export abstract class BaseZoomAction extends Action {
target = ConfigurationTarget.WORKSPACE;
}
this.configurationEditingService.writeConfiguration(target, { key: BaseZoomAction.SETTING_KEY, value: level }).done(null, error => {
// Fallback to apply on window
const applyZoom = (error?: Error) => {
webFrame.setZoomLevel(level);
browser.setZoomLevel(level); // Ensure others can listen to zoom level changes
// Inform user
this.messageService.show(Severity.Error, error);
});
if (error) {
this.messageService.show(Severity.Error, error);
}
};
this.configurationEditingService.writeConfiguration(target, { key: BaseZoomAction.SETTING_KEY, value: level }).done(() => applyZoom(), error => applyZoom(error));
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册