summaryrefslogtreecommitdiff
path: root/src/library/boxed.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2020-01-06 12:41:42 +0100
committerLaurenz <laurmaedje@gmail.com>2020-01-06 12:41:42 +0100
commit2ee5810fecb96a8d4e0d078faecc8c91096d6881 (patch)
tree702c746a3021f5034e1b31cd07e8fadba0e4dd7a /src/library/boxed.rs
parentbd384a2a633e21cd7deff7ed2a29a9c03a63a20e (diff)
Asyncify font loading 🪐
Diffstat (limited to 'src/library/boxed.rs')
-rw-r--r--src/library/boxed.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/boxed.rs b/src/library/boxed.rs
index a4d059cb..da06a371 100644
--- a/src/library/boxed.rs
+++ b/src/library/boxed.rs
@@ -46,7 +46,7 @@ function! {
ctx.spaces = smallvec![space];
- match layout(&self.body, ctx) {
+ match layout(&self.body, ctx).await {
Ok(layouts) => return Ok(vec![AddMultiple(layouts)]),
Err(err) => error = Some(err),
}