Skip to content

Commit

Permalink
Make default image size "Large", like before my changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
tlc committed Jan 21, 2011
1 parent 60c66ba commit 691054b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.markdown
Expand Up @@ -47,7 +47,7 @@ and list your accounts within it. e.g.
# optional, default is nickname or email
smugmug.account1.name=prettyNameShownOnYourClient

# optional, default is Medium
# optional, default is Large
# Original, X3Large, X2Large, XLarge, Large, Medium, Small, Thumb, Tiny
smugmug.account1.imagesize=X2Large

Expand Down
4 changes: 2 additions & 2 deletions src/net/pms/external/smugmug/Account.java
Expand Up @@ -38,7 +38,7 @@ public enum SmugSize {

static SmugSize getSmugSize(String size) {
if (size == null)
return SmugSize.MEDIUM; // default
return SmugSize.LARGE; // default
else if ("x3large".equalsIgnoreCase(size))
return SmugSize.X3LARGE;
else if ("x2large".equalsIgnoreCase(size))
Expand All @@ -56,7 +56,7 @@ else if ("thumb".equalsIgnoreCase(size))
else if ("tiny".equalsIgnoreCase(size))
return SmugSize.TINY;
else
return SmugSize.MEDIUM; // default
return SmugSize.LARGE; // default
}

final private String id;
Expand Down

0 comments on commit 691054b

Please sign in to comment.