aboutsummaryrefslogtreecommitdiff
path: root/src/window.rs
diff options
context:
space:
mode:
authorchetgurevitch <chetgurevitch@protonmail.com>2017-12-11 19:37:53 -0800
committerJoe Wilm <jwilm@users.noreply.github.com>2017-12-23 21:39:09 -0800
commit958a32767ff9e06dc569eb612da889bfa06970be (patch)
tree07e72f081c09a6ddabf38a26c7843d2b4eb58f82 /src/window.rs
parentb10390ede89c3b62c12a1b7b67c5440f8678c76b (diff)
downloadalacritty-958a32767ff9e06dc569eb612da889bfa06970be.tar.gz
alacritty-958a32767ff9e06dc569eb612da889bfa06970be.zip
Update glutin to v0.11
Diffstat (limited to 'src/window.rs')
-rw-r--r--src/window.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.rs b/src/window.rs
index 60048774..e42151fd 100644
--- a/src/window.rs
+++ b/src/window.rs
@@ -234,7 +234,7 @@ impl Window {
pub fn inner_size_pixels(&self) -> Option<Size<Pixels<u32>>> {
self.window
- .get_inner_size_pixels()
+ .get_inner_size()
.map(|(w, h)| Size { width: Pixels(w), height: Pixels(h) })
}