aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Bell <bryan.w.bell@gmail.com>2015-01-13 01:23:34 -0800
committerBryan Bell <bryan.w.bell@gmail.com>2015-01-13 01:23:34 -0800
commit0fba0a9a734dcc7c30f9c369d6481a9b1d33828c (patch)
tree94ae05227742cd414a000961c4f41c1bf2cfca38
parent5389c73b852d82ddfbc66ffacdf5620f431275dd (diff)
downloadglutin-0fba0a9a734dcc7c30f9c369d6481a9b1d33828c.tar.gz
glutin-0fba0a9a734dcc7c30f9c369d6481a9b1d33828c.zip
Code review comments
- Revert version back to 0.0.4 - Add comment that set_cursor has no effect on Android
-rw-r--r--Cargo.toml2
-rw-r--r--src/lib.rs1
2 files changed, 2 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 0903df0..78e4634 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "glutin"
-version = "0.0.5-pre"
+version = "0.0.4-pre"
authors = ["tomaka <pierre.krieger1708@gmail.com>"]
description = "Cross-plaform OpenGL context provider. Important: the crates.io only supports Windows and Linux for the moment."
keywords = ["windowing", "opengl"]
diff --git a/src/lib.rs b/src/lib.rs
index 603e2b4..3a95342 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -617,6 +617,7 @@ impl Window {
}
/// Modifies the mouse cursor of the window.
+ /// Has no effect on Android.
pub fn set_cursor(&mut self, cursor: MouseCursor) {
self.window.set_cursor(cursor);
}