Fix deadlock when obtaining the font ID

Marshall Bowers created

Change summary

crates/gpui3/src/text_system.rs | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)

Detailed changes

crates/gpui3/src/text_system.rs 🔗

@@ -50,7 +50,9 @@ impl TextSystem {
     }
 
     pub fn font_id(&self, font: &Font) -> Result<FontId> {
-        if let Some(font_id) = self.font_ids_by_font.read().get(font).copied() {
+        let font_id = self.font_ids_by_font.read().get(font).copied();
+
+        if let Some(font_id) = font_id {
             Ok(font_id)
         } else {
             let font_id = self.platform_text_system.font_id(font)?;