Skip to content

Commit

Permalink
Fix #3028.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Mar 19, 2009
1 parent da0f3c8 commit 5a51e5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/ch/cyberduck/ui/cocoa/CDBrowserController.java
Original file line number Diff line number Diff line change
Expand Up @@ -1547,9 +1547,9 @@ protected void _updateBrowserColumns(NSTableView table) {
c.setIdentifier(CDBrowserTableDataSource.SIZE_COLUMN);
c.setMinWidth(50f);
c.setWidth(80f);
c.setMaxWidth(100f);
c.setMaxWidth(150f);
if(setResizableMaskSelector.implementedByClass(NSTableColumn.class)) {
c.setResizingMask(NSTableColumn.AutoresizingMask);
c.setResizingMask(NSTableColumn.AutoresizingMask | NSTableColumn.UserResizingMask);
}
else {
c.setResizable(true);
Expand Down

0 comments on commit 5a51e5b

Please sign in to comment.