Skip to content

Commit

Permalink
Only display decimal file sizes on 10.6+.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Dec 6, 2010
1 parent 62ce36b commit 7d3126e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/ch/cyberduck/ui/cocoa/UserDefaultsPreferences.java
Expand Up @@ -182,7 +182,7 @@ protected void setDefaults() {
* Location of the openssh known_hosts file
*/
defaults.put("ssh.knownhosts", "~/.ssh/known_hosts");
defaults.put("browser.filesize.decimal", String.valueOf(Factory.VERSION_PLATFORM.matches("10\\.5.*")));
defaults.put("browser.filesize.decimal", String.valueOf(Factory.VERSION_PLATFORM.matches("10\\.6.*")));
}

/**
Expand Down

0 comments on commit 7d3126e

Please sign in to comment.