mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-07 04:20:07 +01:00
Fix UltimateListCtrl FONTWEIGHT
NORMAL in Font Call should have been FONTWEIGHT, not FONTSYLE preventing UltimatListCtrl from working
This commit is contained in:
@@ -6122,7 +6122,7 @@ class UltimateListMainWindow(wx.ScrolledWindow):
|
||||
# Hyperlinks things
|
||||
normalFont = wx.SystemSettings.GetFont(wx.SYS_DEFAULT_GUI_FONT)
|
||||
self._hypertextfont = wx.Font(normalFont.GetPointSize(), normalFont.GetFamily(),
|
||||
normalFont.GetStyle(), wx.FONTSTYLE_NORMAL, True,
|
||||
normalFont.GetStyle(), wx.FONTWEIGHT_NORMAL, True,
|
||||
normalFont.GetFaceName(), normalFont.GetEncoding())
|
||||
self._hypertextnewcolour = wx.BLUE
|
||||
self._hypertextvisitedcolour = wx.Colour(200, 47, 200)
|
||||
|
||||
Reference in New Issue
Block a user