Skip to content
This repository has been archived by the owner on Feb 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #60 from calble/master
Browse files Browse the repository at this point in the history
Fixing Two Bugs
  • Loading branch information
javacafe01 authored Aug 24, 2020
2 parents 390ed87 + c05aab7 commit abc0bed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:requestLegacyExternalStorage="true"
android:theme="@style/Theme.Cyanea.Light.DarkActionBar">

<activity
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/gsnathan/pdfviewer/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ void unlockPDF() {

final EditText input = new EditText(this);
input.setPadding(19, 19, 19, 19);
input.setInputType(InputType.TYPE_TEXT_VARIATION_PASSWORD);
input.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD);

new AlertDialog.Builder(this)
.setTitle(R.string.password)
Expand Down

0 comments on commit abc0bed

Please sign in to comment.