diff options
author | Bradley Sepos <[email protected]> | 2018-01-26 16:44:25 -0500 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2018-01-26 16:44:25 -0500 |
commit | 21d0e57075cd5b5e33e920c31f9deac625001882 (patch) | |
tree | b4a295966a4ac53af7cddc49801edab953b3ad4d /macosx/HBController.m | |
parent | f9f219a8a53614b5bffe2d62de49135f85cf5137 (diff) |
MacGUI: Coding style cosmetics.
Diffstat (limited to 'macosx/HBController.m')
-rw-r--r-- | macosx/HBController.m | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/macosx/HBController.m b/macosx/HBController.m index b97490c70..d80ef95c2 100644 --- a/macosx/HBController.m +++ b/macosx/HBController.m @@ -1438,7 +1438,8 @@ - (void)reloadPreset:(id)sender; { // Reload the currently selected preset if it is selected. - if (self.currentPreset != NULL){ + if (self.currentPreset != NULL) + { [self applyPreset:self.currentPreset]; } } |