CMPUT301F23T01 / Sigma-Blue

Introduction to Software engineering project repository
BSD 2-Clause "Simplified" License
0 stars 1 forks source link

Eric/experiment/improve tag selection #154

Closed echeng-git closed 10 months ago

echeng-git commented 10 months ago

Fixed interactions with the database when editing the details of an item. Tag addition now persists in the database as well.

Note

I disabled autohiglighting for now in TagManagerFragment to avoid ConcurrentModificationExceptions.

waridh commented 10 months ago

With the concurrent modification exception, this is because android does everything UI with threading, even if we don't specify it to do so. I think we can fix this with just a mutex.