We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f62173a + abb5524 commit d3e474bCopy full SHA for d3e474b
Source/OnixSourceEditor.cpp
@@ -237,6 +237,8 @@ void OnixSourceEditor::labelTextChanged (Label* l)
237
readSize = maxReadSize;
238
}
239
240
+ readSize = (readSize + 3) & ~3; // NB: Round up to the next multiple of four to align with word boundaries in liboni
241
+
242
source->setBlockReadSize (readSize);
243
l->setText (String (source->getBlockReadSize()), dontSendNotification);
244
Source/OpenEphysLib.cpp
@@ -47,7 +47,7 @@ extern "C" EXPORT void getLibInfo(Plugin::LibraryInfo* info)
47
info->name = "ONIX Source";
48
49
//Version of the library, used only for information
50
- info->libVersion = "0.2.1";
+ info->libVersion = "0.3.0";
51
info->numPlugins = NUM_PLUGINS;
52
53
0 commit comments