diff options
Diffstat (limited to 'src/components/util/geometry.rs')
-rw-r--r-- | src/components/util/geometry.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/util/geometry.rs b/src/components/util/geometry.rs index 248ce1ba01e..6fd74144b05 100644 --- a/src/components/util/geometry.rs +++ b/src/components/util/geometry.rs @@ -12,7 +12,7 @@ use std::fmt; // An Au is an "App Unit" and represents 1/60th of a CSS pixel. It was // originally proposed in 2002 as a standard unit of measure in Gecko. // See https://bugzilla.mozilla.org/show_bug.cgi?id=177805 for more info. -pub struct Au(i32); +pub struct Au(pub i32); // We don't use #[deriving] here for inlining. impl Clone for Au { |