summaryrefslogtreecommitdiffstats
path: root/style/src/theme.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2023-11-14 15:52:55 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2023-11-14 15:52:55 +0100
commit74b920a708afc2407cb495a2953e97114f7773b1 (patch)
tree2441c4906e0bc109de2b7a39d27c7d91804374a7 /style/src/theme.rs
parent77dfa60c9640236df8b56084a6b1c58826b51e7e (diff)
downloadiced-74b920a708afc2407cb495a2953e97114f7773b1.tar.gz
iced-74b920a708afc2407cb495a2953e97114f7773b1.tar.bz2
iced-74b920a708afc2407cb495a2953e97114f7773b1.zip
Remove unnecessary `self` in `iced_style::theme`
Diffstat (limited to '')
-rw-r--r--style/src/theme.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/style/src/theme.rs b/style/src/theme.rs
index cc31d72d..47010728 100644
--- a/style/src/theme.rs
+++ b/style/src/theme.rs
@@ -1,7 +1,7 @@
//! Use the built-in theme and styles.
pub mod palette;
-pub use self::palette::Palette;
+pub use palette::Palette;
use crate::application;
use crate::button;