Skip to content

Commit

Permalink
Bug 797842 - Empty Entry widgets not showing insertion cursor
Browse files Browse the repository at this point in the history
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'
  • Loading branch information
Bob-IT committed Jul 22, 2020
1 parent 40d63d4 commit ee230a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/gtk-3.0.css
Expand Up @@ -22,7 +22,7 @@

/* Application wide font setting */
* {
font: 12px arial, sans-serif;
font: 12px arial;
}


Expand All @@ -40,7 +40,7 @@ scrollbar slider {

/* Register sheet font setting */
gnc-id-sheet {
font: 10px arial, sans-serif;
font: 10px arial;
}


Expand All @@ -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;
Expand Down

0 comments on commit ee230a6

Please sign in to comment.