Changeset 2973
- Timestamp:
- 03/24/2007 11:41:13 AM (2 years ago)
- Files:
-
- trunk/dabo/settings.py (modified) (1 diff)
- trunk/dabo/ui/uiwx/dFont.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/dabo/settings.py
r2230 r2973 81 81 # expect.) 82 82 83 # macFontScaling: If you set a font to 10 pt it'll look medium-small on most 84 # Windows and Linux screens. However, it will look very small on Mac because 85 # of automatic conversion in OS X. 8pt fonts on Mac are barely even readable. 86 # Set macFontScaling to True to make your fonts appear the same size on all 87 # platforms. 88 macFontScaling = False ## will default to True once tested. 89 83 90 # When doing date calculations, displaying calendars, etc., this determines whether 84 91 # 'Sunday' or 'Monday' is considered the beginning of the week trunk/dabo/ui/uiwx/dFont.py
r2604 r2973 66 66 67 67 def _setSize(self, val): 68 if wx.Platform == "__WXMAC__" and dabo.settings.macFontScaling: 69 val = round(val / .75) 68 70 self._nativeFont.SetPointSize(val) 69 71 self._propsChanged()
