Skip to content

Commit

Permalink
login: smoother theme dialog (fixes #4946) (#4947)
Browse files Browse the repository at this point in the history
Co-authored-by: dogi <dogi@users.noreply.github.com>
  • Loading branch information
Okuro3499 and dogi authored Jan 6, 2025
1 parent f357eff commit f452edc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
applicationId "org.ole.planet.myplanet"
minSdkVersion 26
targetSdkVersion 34
versionCode 2166
versionName "0.21.66"
versionCode 2167
versionName "0.21.67"
ndkVersion '21.3.6528147'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ class SettingActivity : AppCompatActivity() {
else -> 2
}

val builder = AlertDialog.Builder(context, R.style.CustomAlertDialogStyle)
val builder = AlertDialog.Builder(context, R.style.AlertDialogTheme)
.setTitle(context.getString(R.string.select_theme_mode))
.setSingleChoiceItems(ArrayAdapter(context, R.layout.checked_list_item, options), checkedItem) { dialog, which ->
val selectedMode = when (which) {
Expand Down

0 comments on commit f452edc

Please sign in to comment.