From ee230a6cca3cfca9f9e4a8860436e39aae29ab98 Mon Sep 17 00:00:00 2001 From: Robert Fewell <14uBobIT@gmail.com> Date: Wed, 22 Jul 2020 12:35:48 +0100 Subject: [PATCH] Bug 797842 - Empty Entry widgets not showing insertion cursor On windows 10, if the font has been specified in CSS with 'sans-serif', the insertion cursor on an empty entry widget is not shown. Choosing a different font such as 'arial' is OK. As reporter based there changes on the example CSS file remove the reference to 'sans-serif' --- doc/gtk-3.0.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/gtk-3.0.css b/doc/gtk-3.0.css index ad780199a5..cccae3594c 100755 --- a/doc/gtk-3.0.css +++ b/doc/gtk-3.0.css @@ -22,7 +22,7 @@ /* Application wide font setting */ * { - font: 12px arial, sans-serif; + font: 12px arial; } @@ -40,7 +40,7 @@ scrollbar slider { /* Register sheet font setting */ gnc-id-sheet { - font: 10px arial, sans-serif; + font: 10px arial; } @@ -65,7 +65,7 @@ gnc-id-cursor button { /* Register sheet calendar */ gnc-id-sheet calendar { - font: 13px arial, sans-serif; + font: 13px arial; background-color:lightgreen; border-color: green; border-width: 1px;