Skip to content

Commit

Permalink
all: smoother navigation libraries icons (fixes #4975) (#4985)
Browse files Browse the repository at this point in the history
Co-authored-by: dogi <[email protected]>
  • Loading branch information
pavi38 and dogi authored Jan 10, 2025
1 parent 274a901 commit 5290461
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 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 2183
versionName "0.21.83"
versionCode 2184
versionName "0.21.84"
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 @@ -836,9 +836,9 @@ class DashboardActivity : DashboardElementActivity(), OnHomeItemClickListener, N
get() {
val menuImageList = ArrayList<Drawable>()
ResourcesCompat.getDrawable(resources, R.drawable.myplanet, null)?.let { menuImageList.add(it) }
ResourcesCompat.getDrawable(resources, R.drawable.mylibrary, null)?.let { menuImageList.add(it) }
ResourcesCompat.getDrawable(resources, R.drawable.ourcourses, null)?.let { menuImageList.add(it) }
ResourcesCompat.getDrawable(resources, R.drawable.ourlibrary, null)?.let { menuImageList.add(it) }
ResourcesCompat.getDrawable(resources, R.drawable.ourcourses, null)?.let { menuImageList.add(it) }
ResourcesCompat.getDrawable(resources, R.drawable.mylibrary, null)?.let { menuImageList.add(it) }
ResourcesCompat.getDrawable(resources, R.drawable.mycourses, null)?.let { menuImageList.add(it) }
ResourcesCompat.getDrawable(resources, R.drawable.team, null)?.let { menuImageList.add(it) }
ResourcesCompat.getDrawable(resources, R.drawable.business, null)?.let { menuImageList.add(it) }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -836,9 +836,9 @@ class DashboardActivity : DashboardElementActivity(), OnHomeItemClickListener, N
get() {
val menuImageList = ArrayList<Drawable>()
ResourcesCompat.getDrawable(resources, R.drawable.myplanet, null)?.let { menuImageList.add(it) }
ResourcesCompat.getDrawable(resources, R.drawable.mylibrary, null)?.let { menuImageList.add(it) }
ResourcesCompat.getDrawable(resources, R.drawable.ourcourses, null)?.let { menuImageList.add(it) }
ResourcesCompat.getDrawable(resources, R.drawable.ourlibrary, null)?.let { menuImageList.add(it) }
ResourcesCompat.getDrawable(resources, R.drawable.ourcourses, null)?.let { menuImageList.add(it) }
ResourcesCompat.getDrawable(resources, R.drawable.mylibrary, null)?.let { menuImageList.add(it) }
ResourcesCompat.getDrawable(resources, R.drawable.mycourses, null)?.let { menuImageList.add(it) }
ResourcesCompat.getDrawable(resources, R.drawable.team, null)?.let { menuImageList.add(it) }
ResourcesCompat.getDrawable(resources, R.drawable.business, null)?.let { menuImageList.add(it) }
Expand Down

0 comments on commit 5290461

Please sign in to comment.