Changeset 27

Show
Ignore:
Timestamp:
09/12/07 23:25:11 (1 year ago)
Author:
tal
Message:
Tweaks.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • applications/FeatureProof/trunk/Lib/featureProof/documentWindow.py

    r24 r27  
    127127        s = vanilla.ScrollView((0, 0, 190, -0), self.testCaseControls.getNSView(), 
    128128                backgroundColor=sourceListBackgroundColor, autohidesScrollers=True) 
    129         s._frameAdjustments = (-1, -1, 1, 2
     129        s._frameAdjustments = (-1, -1, 1, 1
    130130        self.w.testCaseControlsScrollView = s 
    131131        frame = self.w.testCaseControlsScrollView.getNSScrollView().contentView().frame() 
     
    184184        self.testCaseView = NSView.alloc().init() 
    185185        s = vanilla.ScrollView((190, 0, -0, -0), self.testCaseView) 
    186         s._frameAdjustments = (-1, -1, 2, 2
     186        s._frameAdjustments = (-1, -1, 2, 1
    187187        self.w.testCaseScrollView = s 
    188188        self.w.testCaseScrollView.show(False) 
     
    198198            tree["Source"] = self.font.source 
    199199        b = Browser((0, 0, -0, -0), tree) 
    200         b._frameAdjustments = (-1, -1, 2, 2
     200        b._frameAdjustments = (-1, -1, 2, 1
    201201        self.w.sourceBrowser = b 
    202202        self.w.sourceBrowser.show(False) 
     
    386386        elif self.currentView == "interactiveLog": 
    387387            html = logToHTML(logger.getText()) 
     388            #print html 
    388389            self.w.interactiveLogView.set(html, LogColorsGraphite) 
    389390