Skip to content

Commit cbb69c3

Browse files
authored
Update IPlug2 for new IDirBrowseControlBase argument (#292)
* Revert "Don't recurse down file directories when collecting files to iterate through (#289)" This reverts commit cd11809. * Update iPlug2 for new IDirBrowseControlBase argument
1 parent 3979a85 commit cbb69c3

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.gitmodules

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[submodule "iPlug2"]
22
path = iPlug2
3-
# url = https://github.com/iPlug2/iPlug2 # For being steady
4-
url = https://github.com/sdatkinson/iPlug2.git # For moving fast
3+
url = https://github.com/iPlug2/iPlug2
54
[submodule "eigen"]
65
path = eigen
76
url = https://gitlab.com/libeigen/eigen.git

NeuralAmpModeler/NeuralAmpModelerControls.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ class NAMFileBrowserControl : public IDirBrowseControlBase
147147
NAMFileBrowserControl(const IRECT& bounds, int clearMsgTag, const char* labelStr, const char* fileExtension,
148148
IFileDialogCompletionHandlerFunc ch, const IVStyle& style, const ISVG& loadSVG,
149149
const ISVG& clearSVG, const ISVG& leftSVG, const ISVG& rightSVG)
150-
: IDirBrowseControlBase(bounds, fileExtension, true)
150+
: IDirBrowseControlBase(bounds, fileExtension, false, false)
151151
, mClearMsgTag(clearMsgTag)
152152
, mDefaultLabelStr(labelStr)
153153
, mCompletionHandlerFunc(ch)
@@ -158,7 +158,6 @@ class NAMFileBrowserControl : public IDirBrowseControlBase
158158
, mRightSVG(rightSVG)
159159
{
160160
mIgnoreMouse = true;
161-
mShowFileExtensions = false;
162161
}
163162

164163
void Draw(IGraphics& g) override

0 commit comments

Comments
 (0)