We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9abee13 commit 1a7bfa0Copy full SHA for 1a7bfa0
packages/app/src/app/store/modules/preferences/index.js
@@ -39,6 +39,9 @@ export default Module({
39
trailingComma: 'none',
40
useTabs: false,
41
vimMode: false,
42
+ // Windows has problems with calculating characters widths when ligatures
43
+ // are disabled, however there is a weird character when you have 'fi' in
44
+ // Menlo. So a temporary fix is to only enable this for Windows.
45
enableLigatures: navigator.platform.indexOf('Win') > -1,
46
},
47
isLoadingPaymentDetails: true,
0 commit comments