Use WebGL Renderer by default
also set disableLigatures same as default config
This commit is contained in:
parent
4c90d7555c
commit
923518b72f
2 changed files with 3 additions and 3 deletions
|
|
@ -107,7 +107,7 @@ const initial: uiState = Immutable<Mutable<uiState>>({
|
|||
webGLRenderer: true,
|
||||
webLinksActivationKey: '',
|
||||
macOptionSelectionMode: 'vertical',
|
||||
disableLigatures: false
|
||||
disableLigatures: true
|
||||
});
|
||||
|
||||
const reducer: IUiReducer = (state = initial, action) => {
|
||||
|
|
@ -260,7 +260,7 @@ const reducer: IUiReducer = (state = initial, action) => {
|
|||
ret.macOptionSelectionMode = config.macOptionSelectionMode;
|
||||
}
|
||||
|
||||
if (config.disableLigatures) {
|
||||
if (config.disableLigatures !== undefined) {
|
||||
ret.disableLigatures = config.disableLigatures;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue