I can haz Label?

This commit is contained in:
2026-02-14 20:13:16 +01:00
parent 81971410ce
commit f6ec4492f1
6 changed files with 133 additions and 34 deletions

View File

@@ -7,7 +7,7 @@ use g13_driver::{G13, G13Event};
use crate::app::pages::StartPage;
use super::app::widgets::Page;
use super::app::pages::Page;
pub struct App {
pages: VecDeque<Box<dyn Page<Display = G13>>>,
@@ -17,7 +17,7 @@ impl App {
pub fn new() -> Self {
let mut pages: VecDeque<Box<dyn Page<Display = G13>>> = VecDeque::new();
pages.push_back(Box::new(StartPage::default()));
pages.push_back(Box::new(StartPage::new()));
Self { pages }
}