fix: make aliased signals snake case

This commit is contained in:
Nova
2022-11-08 20:17:15 -05:00
parent 1f61d32877
commit a756e80064
4 changed files with 26 additions and 26 deletions

View File

@@ -32,15 +32,15 @@ lazy_static! {
static ref ITEM_TYPE_INFO_PANEL: TypeInfo = TypeInfo {
type_name: "panel",
aliased_local_signals: vec![
"applySurfaceMaterial",
"applyCursorMaterial",
"pointerDeactivate",
"pointerScroll",
"pointerButton",
"pointerMotion",
"keyboardSetActive",
"keyboardSetKeyState",
"keyboardSetModifiers",
"apply_surface_material",
"apply_cursor_material",
"pointer_deactivate",
"pointer_scroll",
"pointer_button",
"pointer_motion",
"keyboard_set_active",
"keyboard_set_keyState",
"keyboard_set_modifiers",
"resize",
"close",
],