summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2017-03-02 18:10:18 +0100
committerDamiano Galassi <[email protected]>2017-03-02 18:10:18 +0100
commitc33ca187ddec9cf42378a289d7b4ff90996b948a (patch)
treed90006b6e7fb8e6a7895c6b769970b91627a7f9f /macosx
parent5a85a7012b5cdf9bf7bf7733db01aeea087af596 (diff)
MacGui: forgot an else block in the previous commit
Diffstat (limited to 'macosx')
-rw-r--r--macosx/HBController.m5
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