Skip to content

Commit 5a21244

Browse files
author
moddingfox
committed
app/build.gradle: Version change
app/src/main/java/open/furaffinity/client/dialogs/recaptchaV2Dialog.java: Fixed isues with dialog not adjusting size correctly on some devices makeing it not possiable to login
1 parent 0533e26 commit 5a21244

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android {
88
applicationId "open.furaffinity.client"
99
minSdkVersion 26
1010
targetSdkVersion 29
11-
versionCode 25
12-
versionName "0.2.5"
11+
versionCode 26
12+
versionName "0.2.6"
1313

1414
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1515
}

app/src/main/java/open/furaffinity/client/dialogs/recaptchaV2Dialog.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public void setPagePath(String pagePath) {
3939
@NonNull
4040
@Override
4141
public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
42-
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
42+
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity(), android.R.style.Theme_DeviceDefault_DialogWhenLarge);
4343
LayoutInflater inflater = requireActivity().getLayoutInflater();
4444

4545
View rootView = inflater.inflate(R.layout.fragment_web_view, null);

0 commit comments

Comments
 (0)