🐛 Fixed bug

This commit is contained in:
Christian Basler 2018-04-14 20:42:10 +02:00
parent 0d1cfff883
commit 3026ae8505
1 changed files with 3 additions and 1 deletions

View File

@ -438,7 +438,9 @@ class MainActivity : AppCompatActivity(), ListSelectionListener<Serializable> {
} else {
(item as PrimaryDrawerItem).withBadge(null as String?)
}
drawer.updateItem(item)
runOnUiThread {
drawer.updateItem(item)
}
}
}
}