Skip to content

Commit

Permalink
Fixed issue #1558
Browse files Browse the repository at this point in the history
  • Loading branch information
m4gr3d committed Aug 11, 2015
1 parent e5d650e commit 69a28a9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ dependencies {
def versionMajor = 3
def versionMinor = 2
def versionPatch = 0
def versionBuild = 0 //bump for dogfood builds, public betas, etc.
def versionBuild = 1 //bump for dogfood builds, public betas, etc.

android {
compileSdkVersion 22
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
*/
public abstract class SlideToUnlockDialog extends DialogFragment implements SeekBar.OnSeekBarChangeListener{

private static final String TAG = SlideToUnlockDialog.class.getSimpleName();

public static final String EXTRA_UNLOCK_ACTION = "extra_unlock_action";

public static SlideToUnlockDialog newInstance(String unlockDescription, final Runnable unlockAction){
Expand Down Expand Up @@ -58,6 +56,12 @@ public void onStart(){
getDialog().setCanceledOnTouchOutside(true);
}

@Override
public void onPause(){
super.onPause();
dismiss();
}

@Override
public void onViewCreated(View view, Bundle savedInstanceState){
super.onViewCreated(view, savedInstanceState);
Expand Down

0 comments on commit 69a28a9

Please sign in to comment.