From 89b5a0fc2595a916bfbd0be101389aa85acdc19b Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sun, 18 Aug 2019 17:01:31 +0300 Subject: [PATCH] ui: fix focus_app() --- vlib/ui/ui_mac.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/ui/ui_mac.v b/vlib/ui/ui_mac.v index fe1b8485ba..c1b112f289 100644 --- a/vlib/ui/ui_mac.v +++ b/vlib/ui/ui_mac.v @@ -22,7 +22,7 @@ pub fn reg_key_vid() { #EventTypeSpec eventType; #eventType.eventClass = kEventClassKeyboard; #eventType.eventKind = kEventHotKeyPressed; - #InstallApplicationEventHandler(&focus_app, 1, &eventType, NULL, NULL); + #InstallApplicationEventHandler(&ui__focus_app, 1, &eventType, NULL, NULL); #gMyHotKeyID.signature = 'rml1'; #gMyHotKeyID.id = 1; #RegisterEventHotKey(kVK_ANSI_1, cmdKey, gMyHotKeyID,