Browse Source

Disable the live constant editor on mobile platforms and update the documentation for the setting

tags/2021-05-28
ed 7 years ago
parent
commit
ed5eeedcb7
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      modules/juce_gui_extra/juce_gui_extra.h

+ 3
- 2
modules/juce_gui_extra/juce_gui_extra.h View File

@@ -64,11 +64,12 @@
#endif
/** Config: JUCE_ENABLE_LIVE_CONSTANT_EDITOR
This lets you turn on the JUCE_ENABLE_LIVE_CONSTANT_EDITOR support. See the documentation
This lets you turn on the JUCE_ENABLE_LIVE_CONSTANT_EDITOR support (desktop only). By default
this will be enabled for debug builds and disabled for release builds. See the documentation
for that macro for more details.
*/
#ifndef JUCE_ENABLE_LIVE_CONSTANT_EDITOR
#if JUCE_DEBUG
#if JUCE_DEBUG && ! (JUCE_IOS || JUCE_ANDROID)
#define JUCE_ENABLE_LIVE_CONSTANT_EDITOR 1
#endif
#endif


Loading…
Cancel
Save