From 89285d78bec464ab11121d32ae05ce67f6fb6f19 Mon Sep 17 00:00:00 2001 From: Michael Aaron Murphy Date: Fri, 7 Oct 2022 05:23:26 +0200 Subject: [PATCH] fix: Add import for headerbar module --- src/widget/mod.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/widget/mod.rs b/src/widget/mod.rs index 7fdc17bc..bb6b7764 100644 --- a/src/widget/mod.rs +++ b/src/widget/mod.rs @@ -1,6 +1,9 @@ mod button; pub use button::*; +mod headerbar; +pub use headerbar::*; + mod icon; pub use self::icon::*;