Skip to content

Commit

Permalink
navigation: switched library icons (fixes #4975)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavi38 committed Jan 9, 2025
1 parent 516a848 commit 1eef3e6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -811,9 +811,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 1eef3e6

Please sign in to comment.