aboutsummaryrefslogtreecommitdiffstats
path: root/components/gfx/font_cache_thread.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/gfx/font_cache_thread.rs')
-rw-r--r--components/gfx/font_cache_thread.rs12
1 files changed, 8 insertions, 4 deletions
diff --git a/components/gfx/font_cache_thread.rs b/components/gfx/font_cache_thread.rs
index 94b2138d68f..669544004bb 100644
--- a/components/gfx/font_cache_thread.rs
+++ b/components/gfx/font_cache_thread.rs
@@ -434,7 +434,8 @@ impl FontCache {
FontSearchScope::Local => {
self.find_font_in_local_family(&template_descriptor, &family_descriptor.name)
},
- }.map(|t| self.get_font_template_info(t))
+ }
+ .map(|t| self.get_font_template_info(t))
}
}
@@ -474,7 +475,8 @@ impl FontCacheThread {
cache.refresh_local_families();
cache.run();
- }).expect("Thread spawning failed");
+ })
+ .expect("Thread spawning failed");
FontCacheThread { chan: chan }
}
@@ -490,7 +492,8 @@ impl FontCacheThread {
LowercaseString::new(&family.name),
sources,
sender,
- )).unwrap();
+ ))
+ .unwrap();
}
pub fn exit(&self) {
@@ -538,7 +541,8 @@ impl FontSource for FontCacheThread {
template_descriptor,
family_descriptor,
response_chan,
- )).expect("failed to send message to font cache thread");
+ ))
+ .expect("failed to send message to font cache thread");
let reply = response_port.recv();