Skip to content

Commit

Permalink
Updated version number and fixed schedule page glitch
Browse files Browse the repository at this point in the history
  • Loading branch information
leahlud committed Feb 18, 2024
1 parent 0b8a484 commit 434de14
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ android {
applicationId "org.hackillinois.android"
minSdkVersion 23
targetSdkVersion 33
versionCode 54
versionCode 55
versionName "2024.1.2"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@ class DayFragment : Fragment(), EventClickListener {
this,
Observer {
showFavorites = it
mAdapter.isLoaded = false
mAdapter.animateItems = true
updateEvents(currentEvents)
},
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class EventsAdapter(
private var itemList: List<ScheduleListItem>,
private val eventClickListener: EventClickListener,
private val isAttendeeViewing: Boolean,
private val isLoaded: Boolean
var isLoaded: Boolean
) : RecyclerView.Adapter<EventsAdapter.ViewHolder>(), EventClickListener {
private lateinit var context: Context
var animateItems = true
Expand Down

0 comments on commit 434de14

Please sign in to comment.