Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
plugin-GUI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
yehaojie
plugin-GUI
Commits
44e8c1de
Commit
44e8c1de
authored
11 years ago
by
Josh Siegle
Browse files
Options
Downloads
Patches
Plain Diff
Remove requirement for config files to have xml extension
parent
c5b56391
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Builds/MacOSX/open-ephys.xcodeproj/project.pbxproj
+3691
-2842
3691 additions, 2842 deletions
Builds/MacOSX/open-ephys.xcodeproj/project.pbxproj
Source/UI/ControlPanel.cpp
+9
-1
9 additions, 1 deletion
Source/UI/ControlPanel.cpp
Source/UI/UIComponent.cpp
+1
-1
1 addition, 1 deletion
Source/UI/UIComponent.cpp
with
3701 additions
and
2844 deletions
Builds/MacOSX/open-ephys.xcodeproj/project.pbxproj
+
3691
−
2842
View file @
44e8c1de
This diff is collapsed.
Click to expand it.
Source/UI/ControlPanel.cpp
+
9
−
1
View file @
44e8c1de
...
...
@@ -392,9 +392,17 @@ ControlPanel::ControlPanel(ProcessorGraph* graph_, AudioComponent* audio_)
addChildComponent
(
newDirectoryButton
);
File
executable
=
File
::
getSpecialLocation
(
File
::
currentExecutableFile
);
#if defined(__APPLE__)
const
String
executableDirectory
=
executable
.
getParentDirectory
().
getParentDirectory
().
getParentDirectory
().
getParentDirectory
().
getFullPathName
();
#else
const
String
executableDirectory
=
executable
.
getParentDirectory
().
getFullPathName
();
#endif
filenameComponent
=
new
FilenameComponent
(
"folder selector"
,
File
::
getCurrentWorkingDirectory
().
getFullPathName
()
,
executableDirectory
,
true
,
true
,
true
,
...
...
This diff is collapsed.
Click to expand it.
Source/UI/UIComponent.cpp
+
1
−
1
View file @
44e8c1de
...
...
@@ -391,7 +391,7 @@ bool UIComponent::perform(const InvocationInfo& info)
{
FileChooser
fc
(
"Choose a file to load..."
,
File
::
getCurrentWorkingDirectory
(),
"*
.xml
"
,
"*"
,
true
);
if
(
fc
.
browseForFileToOpen
())
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment