From f710463b6757ad6eb79c037e5b97f73a0a74c23e Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Mon, 15 Jan 2018 19:01:00 +0000 Subject: [PATCH] Electron: Fixes #155: Caret alignment issue with Russian text --- ElectronClient/app/index.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ElectronClient/app/index.html b/ElectronClient/app/index.html index db4f88e75..bb12765e3 100644 --- a/ElectronClient/app/index.html +++ b/ElectronClient/app/index.html @@ -17,6 +17,11 @@ .smalltalk .page { max-width: 30em; } + .ace_editor * { + /* Necessary to make sure Russian text is displayed properly */ + /* https://github.com/laurent22/joplin/issues/155 */ + font-family: monospace !important; + }