1
0
Fork 0

For #1397 - Updates changelog

master
Jeff Boek 2019-04-09 15:38:24 -07:00
parent 5ec86b34e9
commit 9c492f801d
2 changed files with 5 additions and 2 deletions

View File

@ -25,6 +25,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- #1068 - Adds the ability to quickly copy the URL by long clicking the URLBar
- #1170: Allow user to add a new site exception to site permissions
- #1430 - Adds the Fenix Snackbar
- #1397 - Adds favicons to the history view
>>>>>>> For #1397 - Updates changelog
### Changed
- #1429 - Updated site permissions ui for MVP
### Removed

View File

@ -96,8 +96,8 @@ class HistoryListItemViewHolder(
url.text = item.url
val isEditing = mode is HistoryState.Mode.Editing
checkbox.visibility = if (isEditing) { View.VISIBLE } else { View.GONE }
favicon.visibility = if (isEditing) { View.INVISIBLE } else { View.VISIBLE }
checkbox.visibility = if (isEditing) View.VISIBLE else View.GONE
favicon.visibility = if (isEditing) View.INVISIBLE else View.VISIBLE
if (mode is HistoryState.Mode.Editing) {
checkbox.setOnCheckedChangeListener(null)