Skip to content

Commit

Permalink
courses: smoother filter dark mode (fixes #5041) (#5043)
Browse files Browse the repository at this point in the history
Co-authored-by: dogi <dogi@users.noreply.github.com>
  • Loading branch information
Avinash-Codes and dogi authored Jan 16, 2025
1 parent 8862598 commit fc0fe2e
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 2209
versionName "0.22.9"
versionCode 2210
versionName "0.22.10"
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 @@ -213,7 +213,7 @@ class CoursesFragment : BaseRecyclerFragment<RealmMyCourse?>(), OnCourseItemSele
requireView().findViewById<View>(R.id.tl_tags).visibility = View.GONE
tvFragmentInfo = requireView().findViewById(R.id.tv_fragment_info)
val gradeAdapter = ArrayAdapter.createFromResource(requireContext(), R.array.grade_level, R.layout.spinner_item)
gradeAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item)
gradeAdapter.setDropDownViewResource(R.layout.custom_simple_list_item_1)
spnGrade.adapter = gradeAdapter

val subjectAdapter = ArrayAdapter.createFromResource(requireContext(), R.array.subject_level, R.layout.spinner_item)
Expand Down

0 comments on commit fc0fe2e

Please sign in to comment.