summaryrefslogtreecommitdiffstats
path: root/wgpu/src/renderer/widget.rs
diff options
context:
space:
mode:
Diffstat (limited to 'wgpu/src/renderer/widget.rs')
-rw-r--r--wgpu/src/renderer/widget.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/wgpu/src/renderer/widget.rs b/wgpu/src/renderer/widget.rs
index 2c75413f..84f908e7 100644
--- a/wgpu/src/renderer/widget.rs
+++ b/wgpu/src/renderer/widget.rs
@@ -2,7 +2,6 @@ mod button;
mod checkbox;
mod column;
mod container;
-mod image;
mod progress_bar;
mod radio;
mod row;
@@ -14,3 +13,6 @@ mod text_input;
#[cfg(feature = "svg")]
mod svg;
+
+#[cfg(feature = "image")]
+mod image;