Skip to content

Commit

Permalink
fix(input/method): alias info server methods + create_path
Browse files Browse the repository at this point in the history
  • Loading branch information
technobaboo committed Feb 6, 2024
1 parent 5bbc1e0 commit dfc7f03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nodes/input/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ impl InputMethod {
handler.uid.as_str(),
&handler_node,
AliasInfo {
server_methods: vec!["getTransform"],
server_methods: vec!["get_transform"],
..Default::default()
},
) else {
Expand Down Expand Up @@ -343,7 +343,7 @@ impl Drop for InputHandler {
}

pub fn create_interface(client: &Arc<Client>) -> Result<()> {
let node = Node::create_parent_name(client, "", "input", false);
let node = Node::create_path(client, "/input", false);
node.add_local_signal("create_input_handler", create_input_handler_flex);
node.add_local_signal("create_input_method_pointer", pointer::create_pointer_flex);
node.add_local_signal("create_input_method_tip", tip::create_tip_flex);
Expand Down

0 comments on commit dfc7f03

Please sign in to comment.