diff options
author | 2019-10-25 03:47:34 +0200 | |
---|---|---|
committer | 2019-10-25 03:47:34 +0200 | |
commit | 719c073fc67c87d6b2da1bc01b74751d3f5e59f0 (patch) | |
tree | 660613d215cafc01a30911c22a5ba107fb61b12c /native/src/user_interface.rs | |
parent | 4769272122e8cd0a4d666bb06c00cb27f8cad3c4 (diff) | |
download | iced-719c073fc67c87d6b2da1bc01b74751d3f5e59f0.tar.gz iced-719c073fc67c87d6b2da1bc01b74751d3f5e59f0.tar.bz2 iced-719c073fc67c87d6b2da1bc01b74751d3f5e59f0.zip |
Draft `Scrollable` widget (no clipping yet!)
Diffstat (limited to 'native/src/user_interface.rs')
-rw-r--r-- | native/src/user_interface.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/user_interface.rs b/native/src/user_interface.rs index 5675076d..5df0dc6a 100644 --- a/native/src/user_interface.rs +++ b/native/src/user_interface.rs @@ -347,7 +347,7 @@ impl Cache { .0 .compute_layout(geometry::Size::undefined()) .unwrap(), - cursor_position: Point::new(0.0, 0.0), + cursor_position: Point::new(-1.0, -1.0), } } } |