Author: mlytwyn
Date: Tue Mar 11 23:30:17 2014
New Revision: 37744

URL: http://svn.gna.org/viewcvs/gnustep?rev=37744&view=rev
Log:
Table header view display update rectangle incorrect - patched for now

Modified:
    libs/gui/branches/gnustep_testplant_branch/Source/NSScrollView.m
    libs/gui/branches/gnustep_testplant_branch/Source/NSTableView.m

Modified: libs/gui/branches/gnustep_testplant_branch/Source/NSScrollView.m
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/gui/branches/gnustep_testplant_branch/Source/NSScrollView.m?rev=37744&r1=37743&r2=37744&view=diff
==============================================================================
--- libs/gui/branches/gnustep_testplant_branch/Source/NSScrollView.m    
(original)
+++ libs/gui/branches/gnustep_testplant_branch/Source/NSScrollView.m    Tue Mar 
11 23:30:17 2014
@@ -921,6 +921,7 @@
         {
           headerClipViewOrigin.x = clipViewBounds.origin.x;
           [_headerClipView scrollToPoint: headerClipViewOrigin];
+          [[_headerClipView documentView] 
setNeedsDisplayInRect:clipViewBounds];
         }
     }
 

Modified: libs/gui/branches/gnustep_testplant_branch/Source/NSTableView.m
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/gui/branches/gnustep_testplant_branch/Source/NSTableView.m?rev=37744&r1=37743&r2=37744&view=diff
==============================================================================
--- libs/gui/branches/gnustep_testplant_branch/Source/NSTableView.m     
(original)
+++ libs/gui/branches/gnustep_testplant_branch/Source/NSTableView.m     Tue Mar 
11 23:30:17 2014
@@ -4625,13 +4625,12 @@
 
 - (NSTableViewColumnAutoresizingStyle) columnAutoresizingStyle
 {
-  // FIXME
-  return NSTableViewNoColumnAutoresizing;
+  return _columnAutoresizingStyle;
 }
 
 - (void) setColumnAutoresizingStyle: (NSTableViewColumnAutoresizingStyle)style
 {
-  // FIXME
+  _columnAutoresizingStyle = style;
 }
 
 - (void) sizeLastColumnToFit


_______________________________________________
Gnustep-cvs mailing list
[email protected]
https://mail.gna.org/listinfo/gnustep-cvs

Reply via email to