Skip to content

Commit ac4e599

Browse files
author
Ram Rachum
committed
-
1 parent a4f8955 commit ac4e599

File tree

1 file changed

+4
-6
lines changed
  • garlicsim_wx/garlicsim_wx/widgets/workspace_widgets

1 file changed

+4
-6
lines changed

garlicsim_wx/garlicsim_wx/widgets/workspace_widgets/seek_bar.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,11 @@ def on_paint(self, event):
166166
def draw_small_numbers(self, dc, numbers):
167167
dc.SetPen(wx.Pen('#000000'))
168168
dc.SetFont(
169-
wx.Font(9,
169+
wx.Font(8,
170170
wx.FONTFAMILY_DEFAULT,
171171
wx.FONTSTYLE_NORMAL,
172172
wx.FONTWEIGHT_NORMAL,
173-
False,
174-
'Courier 10 Pitch')
173+
False)
175174
)
176175

177176
for number in numbers:
@@ -182,12 +181,11 @@ def draw_small_numbers(self, dc, numbers):
182181
def draw_big_numbers(self, dc, numbers):
183182
dc.SetPen(wx.Pen('#000000'))
184183
dc.SetFont(
185-
wx.Font(9,
184+
wx.Font(8,
186185
wx.FONTFAMILY_DEFAULT,
187186
wx.FONTSTYLE_NORMAL,
188187
wx.FONTWEIGHT_BOLD,
189-
False,
190-
'Courier 10 Pitch')
188+
False)
191189
)
192190

193191
for number in numbers:

0 commit comments

Comments
 (0)