diff options
| author | 2019-11-11 06:07:31 +0100 | |
|---|---|---|
| committer | 2019-11-11 06:07:31 +0100 | |
| commit | 860a6923bbed57a21ce4b2cae331f6a3a51ca3fe (patch) | |
| tree | b179c26278ef95b6aa2520c1cef69b5fa264ebcf /examples | |
| parent | d4d14b68f47e9527554a728ebbba9b840832626a (diff) | |
| download | iced-860a6923bbed57a21ce4b2cae331f6a3a51ca3fe.tar.gz iced-860a6923bbed57a21ce4b2cae331f6a3a51ca3fe.tar.bz2 iced-860a6923bbed57a21ce4b2cae331f6a3a51ca3fe.zip | |
Split text measurements cache from rendering cache
This speeds up layouting in the most common scenario considerably!
:tada:
Diffstat (limited to '')
| -rw-r--r-- | examples/scroll.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/examples/scroll.rs b/examples/scroll.rs index 98206268..50701879 100644 --- a/examples/scroll.rs +++ b/examples/scroll.rs @@ -1,6 +1,6 @@  use iced::{ -    button, scrollable, Align, Application, Button, Column, Container, Element, -    Image, Length, Scrollable, Text, +    button, scrollable, Align, Application, Button, Container, Element, Image, +    Length, Scrollable, Text,  };  pub fn main() { | 
