app: bugfix emoji_picker stop() missing clearing old textures when app closed on android.

This commit is contained in:
jkds
2026-01-07 10:38:38 +01:00
parent e54c276514
commit d7d37eed31

View File

@@ -265,8 +265,7 @@ impl UIObject for EmojiPicker {
fn stop(&self) {
self.tasks.lock().clear();
// TODO: Figure out how to call async clear from sync context
// self.emoji_meshes.lock().await.clear();
self.emoji_meshes.lock().clear();
}
#[instrument(target = "ui::emoji_picker")]