diff options
author | Bradley Sepos <[email protected]> | 2018-02-01 01:34:33 -0500 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2018-03-17 17:01:54 -0400 |
commit | 25cf745e35f085cae86bb5f4af2a59248f7a9a4c (patch) | |
tree | f081dd107ecd146861d20229b278c89d03af4682 /macosx | |
parent | 6fe6a8e25c6962e212e7cbce3f7334413d89c686 (diff) |
MacGUI: Load the presets popover view on main window load.
Fixes the scenario where presets menu and controls do not update the popover until it is shown, e.g. Presets > Export...
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/HBController.m | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/macosx/HBController.m b/macosx/HBController.m index 38fd515c1..df058a065 100644 --- a/macosx/HBController.m +++ b/macosx/HBController.m @@ -253,6 +253,8 @@ // note that interacting with menus or panels that become key only when needed will not cause a transient popover to close. self.presetsPopover.behavior = NSPopoverBehaviorSemitransient; self.presetsPopover.delegate = self; + + [fPresetsView loadView]; } // Set up the summary view |