feat: add support for showing bar at top of screen

This commit is contained in:
Jake Stanger
2022-08-14 15:56:21 +01:00
parent 19d009fe5b
commit a358037d3e
8 changed files with 77 additions and 15 deletions

View File

@@ -30,7 +30,7 @@ impl Module<Button> for ClockModule {
fn into_widget(self, info: &ModuleInfo) -> Button {
let button = Button::new();
let popup = Popup::new("popup-clock", info.app, Orientation::Vertical);
let popup = Popup::new("popup-clock", info.app, Orientation::Vertical, info.bar_position);
popup.add_clock_widgets();
button.show_all();