diff options
author | Damiano Galassi <[email protected]> | 2017-03-02 18:10:18 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2017-03-02 18:10:18 +0100 |
commit | c33ca187ddec9cf42378a289d7b4ff90996b948a (patch) | |
tree | d90006b6e7fb8e6a7895c6b769970b91627a7f9f /macosx | |
parent | 5a85a7012b5cdf9bf7bf7733db01aeea087af596 (diff) |
MacGui: forgot an else block in the previous commit
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/HBController.m | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/macosx/HBController.m b/macosx/HBController.m index 5cb51da8b..5b721237b 100644 --- a/macosx/HBController.m +++ b/macosx/HBController.m @@ -701,7 +701,10 @@ handler(YES); } - handler(NO); + else + { + handler(NO); + } }]; } else |