Changeset 19789 in webkit


Ignore:
Timestamp:
Feb 22, 2007 7:34:00 AM (17 years ago)
Author:
weinig
Message:

Reviewed by Mark (age 21).

  • WebView/WebHTMLView.mm: (-[WebTextCompleteController _buildUI]): Uncommented the call to the NSWindow SPI that forces the scroll bar to look active. Also replaced a call to the deprecated NSTableView method setAutoresizesAllColumnsToFit: with the new method setColumnAutoresizingStyle: to eliminate console spew.
Location:
trunk/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/ChangeLog

    r19764 r19789  
     12007-02-22  Mitz Pettel  <mitz@webkit.org>
     2
     3        Reviewed by Mark (age 21).
     4
     5        - fix http://bugs.webkit.org/show_bug.cgi?id=12805
     6          REGRESSION: suggestion popup has a disabled scroll bar
     7
     8        * WebView/WebHTMLView.mm:
     9        (-[WebTextCompleteController _buildUI]): Uncommented the call to the NSWindow
     10        SPI that forces the scroll bar to look active. Also replaced a call to
     11        the deprecated NSTableView method setAutoresizesAllColumnsToFit: with
     12        the new method setColumnAutoresizingStyle: to eliminate console spew.
     13
    1142007-02-20  Beth Dakin  <bdakin@apple.com>
    215
  • trunk/WebKit/WebView/WebHTMLView.mm

    r19750 r19789  
    135135@interface NSWindow (AppKitSecretsIKnowAbout)
    136136- (id)_newFirstResponderAfterResigning;
     137- (void)_setForceActiveControls:(BOOL)flag;
    137138@end
    138139
     
    56225623    [_tableView setCornerView:nil];
    56235624    [_tableView setHeaderView:nil];
    5624     [_tableView setAutoresizesAllColumnsToFit:YES];
     5625    [_tableView setColumnAutoresizingStyle:NSTableViewUniformColumnAutoresizingStyle];
    56255626    [_tableView setDelegate:self];
    56265627    [_tableView setDataSource:self];
     
    56415642    [_popupWindow setHasShadow:YES];
    56425643    [_popupWindow setOneShot:YES];
    5643     //[_popupWindow _setForceActiveControls:YES];   // AK secret - no known problem from leaving this out
     5644    [_popupWindow _setForceActiveControls:YES];
    56445645    [_popupWindow setReleasedWhenClosed:NO];
    56455646}
Note: See TracChangeset for help on using the changeset viewer.