Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
marlonscalabrin committed Mar 25, 2014
1 parent c36419b commit ef0bded
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/me/ideia/cameraoverlay/CameraOverlayActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ public void run() {
seekEffect = 0;
switch (seekEffect) {
case 0:
alphaValue.setProgress(photoBase.getAlpha());
alphaValue.setProgress((int)photoBase.getAlphaValue());
switchSeekEffect.setBackgroundResource(R.drawable.alpha);
switchSeekEffectLabel.setText(getString(R.string.alpha));
break;
Expand Down
2 changes: 1 addition & 1 deletion src/me/ideia/cameraoverlay/PhotoEffects.java
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ public void horizontal(int size) {
invalidate();
}

public int getAlpha() {
public int getAlphaValue() {
return alpha;
}

Expand Down

0 comments on commit ef0bded

Please sign in to comment.