Skip to content

Commit

Permalink
login: smoother team dark mode (fixes #5039) (#5040)
Browse files Browse the repository at this point in the history
Co-authored-by: dogi <[email protected]>
  • Loading branch information
Avinash-Codes and dogi authored Jan 15, 2025
1 parent 02b51a7 commit e7551f5
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 2205
versionName "0.22.5"
versionCode 2206
versionName "0.22.6"
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 @@ -236,7 +236,7 @@ class LoginActivity : SyncActivity(), TeamListAdapter.OnItemClickListener {
if (!teams.isNullOrEmpty()) {
activityLoginBinding.team.visibility = View.VISIBLE
teamAdapter = ArrayAdapter(this, R.layout.spinner_item_white, teamList)
teamAdapter?.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item)
teamAdapter?.setDropDownViewResource(R.layout.custom_simple_list_item_1)
teamList.clear()
teamList.add(getString(R.string.select_team))
for (team in teams) {
Expand Down

0 comments on commit e7551f5

Please sign in to comment.