Mark macOS as false

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-02-18 19:05:40 +01:00
parent 9953bc3b22
commit 5f15ee4ea5
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790

View File

@ -328,6 +328,7 @@ export default class ElectronPlatform extends VectorBasePlatform {
* spell-checking, otherwise false. * spell-checking, otherwise false.
*/ */
supportsMultiLanguageSpellCheck(): boolean { supportsMultiLanguageSpellCheck(): boolean {
if (isMac) return false;
return true; return true;
} }