keyboard progress & refactors

This commit is contained in:
galister
2025-06-20 00:48:37 +09:00
parent e0e30dedfb
commit 44a9faac14
37 changed files with 1226 additions and 761 deletions

View File

@@ -57,7 +57,7 @@ impl ParserResult {
}
pub fn process_template(
&self,
&mut self,
template_name: &str,
layout: &mut Layout,
widget_id: WidgetID,
@@ -90,6 +90,10 @@ impl ParserResult {
widget_id,
)?;
ctx.ids.into_iter().for_each(|(id, key)| {
self.ids.insert(id, key);
});
Ok(())
}
}