diff options
author | 2020-06-14 18:10:14 +0200 | |
---|---|---|
committer | 2020-06-14 18:10:14 +0200 | |
commit | 50c37ff3d7f0cafb203d659b9c4bebf8f11d9b9d (patch) | |
tree | 6cb1e2cfa8e2933b8edf4cc05e9fb60724903904 /graphics/src/lib.rs | |
parent | f131969c47bb4a32d60d5be4c2bece0688b0a418 (diff) | |
parent | 4c0286e8acdf0792a9680f6f8212a534a51e3da0 (diff) | |
download | iced-50c37ff3d7f0cafb203d659b9c4bebf8f11d9b9d.tar.gz iced-50c37ff3d7f0cafb203d659b9c4bebf8f11d9b9d.tar.bz2 iced-50c37ff3d7f0cafb203d659b9c4bebf8f11d9b9d.zip |
Merge pull request #406 from hecrj/feature/background-color
Add `background_color` to `Application` and `Sandbox`
Diffstat (limited to 'graphics/src/lib.rs')
-rw-r--r-- | graphics/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/src/lib.rs b/graphics/src/lib.rs index b6dda132..77b96655 100644 --- a/graphics/src/lib.rs +++ b/graphics/src/lib.rs @@ -35,6 +35,6 @@ pub use transformation::Transformation; pub use viewport::Viewport; pub use iced_native::{ - Background, Font, HorizontalAlignment, Point, Rectangle, Size, Vector, - VerticalAlignment, + Background, Color, Font, HorizontalAlignment, Point, Rectangle, Size, + Vector, VerticalAlignment, }; |