UI Zoom Factor
-
@ustk Think it's possible to add the same kind of function for the Streaming Mode?
-
@d-healey I can't tell but I can have a look…
-
@d-healey @Christoph-Hart I've done it and it seems to work... But I'm not against an input from Christoph before pushing :)
void ScriptingApi::Engine::setDiskMode(int mode) { auto mc = dynamic_cast<MainController*>(getScriptProcessor()->getMainController_()); AudioProcessorDriver* driver = dynamic_cast<AudioProcessorDriver*>(mc); driver->diskMode = mode; mc->getSampleManager().setDiskMode((MainController::SampleManager::DiskMode)mode); }
So
mode
should be 1 for fast and 2 for slow due to the original combobox offset.
Do you prefer a 0 based value? (0-fast 1-slow) -
-
Yes zero is better, this represents the actual number in the XML file:
<?xml version="1.0" encoding="UTF-8"?> <GLOBAL_SETTINGS DISK_MODE="0" SCALE_FACTOR="1.0" VOICE_AMOUNT_MULTIPLIER="2" GLOBAL_BPM="-1.0" MIDI_CHANNELS="1" SAMPLES_FOUND="1" OPEN_GL="0"/>
-
@Christoph-Hart @d-healey It was already 0-1 based I was just talking nonsense
That's it, pushed and working...