Changeset 27
- Timestamp:
- 09/12/07 23:25:11 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
applications/FeatureProof/trunk/Lib/featureProof/documentWindow.py
r24 r27 127 127 s = vanilla.ScrollView((0, 0, 190, -0), self.testCaseControls.getNSView(), 128 128 backgroundColor=sourceListBackgroundColor, autohidesScrollers=True) 129 s._frameAdjustments = (-1, -1, 1, 2)129 s._frameAdjustments = (-1, -1, 1, 1) 130 130 self.w.testCaseControlsScrollView = s 131 131 frame = self.w.testCaseControlsScrollView.getNSScrollView().contentView().frame() … … 184 184 self.testCaseView = NSView.alloc().init() 185 185 s = vanilla.ScrollView((190, 0, -0, -0), self.testCaseView) 186 s._frameAdjustments = (-1, -1, 2, 2)186 s._frameAdjustments = (-1, -1, 2, 1) 187 187 self.w.testCaseScrollView = s 188 188 self.w.testCaseScrollView.show(False) … … 198 198 tree["Source"] = self.font.source 199 199 b = Browser((0, 0, -0, -0), tree) 200 b._frameAdjustments = (-1, -1, 2, 2)200 b._frameAdjustments = (-1, -1, 2, 1) 201 201 self.w.sourceBrowser = b 202 202 self.w.sourceBrowser.show(False) … … 386 386 elif self.currentView == "interactiveLog": 387 387 html = logToHTML(logger.getText()) 388 #print html 388 389 self.w.interactiveLogView.set(html, LogColorsGraphite) 389 390
