This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Fixed a bug causing the Bluetooth MIDI pairing dialog to be invisible on iOS
tags/2021-05-28
ed
6 years ago
parent
6626b96474
commit
c57f028a01
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/juce_audio_utils/native/juce_ios_BluetoothMidiDevicePairingDialogue.mm
+ 1
- 1
modules/juce_audio_utils/native/juce_ios_BluetoothMidiDevicePairingDialogue.mm
View File
@@ -51,7 +51,7 @@ public:
setBounds (bounds);
toFront (true);
setOpaque (
! bounds.isEmpty()
);
setOpaque (
true
);
controller = [[CABTMIDICentralViewController alloc] init];
nativeSelectorComponent.setView ([controller view]);
Write
Preview
Loading…
Cancel
Save