Skip to content

Commit 6b9bce7

Browse files
committed
Make test runner console font less ugly
Changed font designation from SYS_SYSTEM_FIXED_FONT to SYS_ANSI_FIXED_FONT. SYS_SYSTEM_FIXED_FONT creates a truly bugly experience. SYS_ANSI_FIXED_FONT isn't perfect, but it's a bit more tolerable.
1 parent f5b2805 commit 6b9bce7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/robotide/contrib/testrunner/testrunnerplugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ def _set_margins(self, out):
639639
out.SetMarginWidth(3,0)
640640

641641
def _create_font(self):
642-
font=wx.SystemSettings.GetFont(wx.SYS_SYSTEM_FIXED_FONT)
642+
font=wx.SystemSettings.GetFont(wx.SYS_ANSI_FIXED_FONT)
643643
if not font.IsFixedWidth():
644644
# fixed width fonts are typically a little bigger than their variable width
645645
# peers so subtract one from the point size.

0 commit comments

Comments
 (0)