Skip to content

Commit

Permalink
Fix #2264.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Jun 30, 2008
1 parent 8dd79d0 commit f078795
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/ch/cyberduck/ui/cocoa/CDBookmarkController.java
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ public void setTransferPopup(NSPopUpButton transferPopup) {
this.transferPopup = transferPopup;
this.transferPopup.setTarget(this);
this.transferPopup.setAction(new NSSelector("transferPopupClicked", new Class[]{NSPopUpButton.class}));
if(0 == host.getMaxConnections()) {
if(null == host.getMaxConnections()) {
this.transferPopup.selectItemAtIndex(DEFAULT_INDEX);
}
else {
Expand Down

0 comments on commit f078795

Please sign in to comment.