diff options
author | 2020-06-14 18:10:14 +0200 | |
---|---|---|
committer | 2020-06-14 18:10:14 +0200 | |
commit | 50c37ff3d7f0cafb203d659b9c4bebf8f11d9b9d (patch) | |
tree | 6cb1e2cfa8e2933b8edf4cc05e9fb60724903904 /style | |
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 'style')
-rw-r--r-- | style/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/style/src/lib.rs b/style/src/lib.rs index 2c5977b5..72d83aec 100644 --- a/style/src/lib.rs +++ b/style/src/lib.rs @@ -2,6 +2,8 @@ //! //! It contains a set of styles and stylesheets for most of the built-in //! widgets. +pub use iced_core::{Background, Color}; + pub mod button; pub mod checkbox; pub mod container; |