Make dispatch_global_action private

This commit is contained in:
Antonio Scandurra 2023-05-01 11:45:35 +02:00
parent 0f44648b38
commit 029538fe21
2 changed files with 20 additions and 5 deletions

View file

@ -1048,7 +1048,7 @@ impl AppContext {
}
}
pub fn dispatch_global_action<A: Action>(&mut self, action: A) {
fn dispatch_global_action<A: Action>(&mut self, action: A) {
self.dispatch_global_action_any(&action);
}