gpui: Fix typo in handle_gpui_events
(#36431)
This PR fixes a typo I noticed in the `handle_gpui_events` method name. Release Notes: - N/A
This commit is contained in:
parent
ed155ceba9
commit
fa61c3e24d
1 changed files with 2 additions and 2 deletions
|
@ -227,7 +227,7 @@ impl WindowsPlatform {
|
||||||
| WM_GPUI_CLOSE_ONE_WINDOW
|
| WM_GPUI_CLOSE_ONE_WINDOW
|
||||||
| WM_GPUI_TASK_DISPATCHED_ON_MAIN_THREAD
|
| WM_GPUI_TASK_DISPATCHED_ON_MAIN_THREAD
|
||||||
| WM_GPUI_DOCK_MENU_ACTION => {
|
| WM_GPUI_DOCK_MENU_ACTION => {
|
||||||
if self.handle_gpui_evnets(msg.message, msg.wParam, msg.lParam, &msg) {
|
if self.handle_gpui_events(msg.message, msg.wParam, msg.lParam, &msg) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -240,7 +240,7 @@ impl WindowsPlatform {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Returns true if the app should quit.
|
// Returns true if the app should quit.
|
||||||
fn handle_gpui_evnets(
|
fn handle_gpui_events(
|
||||||
&self,
|
&self,
|
||||||
message: u32,
|
message: u32,
|
||||||
wparam: WPARAM,
|
wparam: WPARAM,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue