Changeset 103
- Timestamp:
- 11/27/07 12:57:49 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
packages/defconAppKit/trunk/Lib/defconAppKit/views/glyphLineView.py
r99 r103 262 262 class GlyphLineView(vanilla.ScrollView): 263 263 264 def __init__(self, posSize, pointSize=100, applyKerning=True, glyphColor=None, backgroundColor=None, dropCallback=None ):264 def __init__(self, posSize, pointSize=100, applyKerning=True, glyphColor=None, backgroundColor=None, dropCallback=None, autohideScrollers=True): 265 265 if glyphColor is None: 266 266 glyphColor = NSColor.blackColor() … … 275 275 self._dropCallback = dropCallback 276 276 self._glyphLineView.vanillaWrapper = weakref.ref(self) 277 super(GlyphLineView, self).__init__(posSize, self._glyphLineView, autohidesScrollers= True, backgroundColor=backgroundColor)277 super(GlyphLineView, self).__init__(posSize, self._glyphLineView, autohidesScrollers=autohideScrollers, backgroundColor=backgroundColor) 278 278 279 279 def _breakCycles(self):
