Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
imagej-elphel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Elphel
imagej-elphel
Commits
b8af8a1c
Commit
b8af8a1c
authored
Jun 21, 2014
by
Luc Deschenaux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix JP46_Reader_camera showGui
parent
ace015f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
JP46_Reader_camera.java
src/main/java/JP46_Reader_camera.java
+5
-4
No files found.
src/main/java/JP46_Reader_camera.java
View file @
b8af8a1c
...
...
@@ -82,14 +82,14 @@ public class JP46_Reader_camera implements PlugIn, ActionListener {
}
public
JP46_Reader_camera
(
Boolean
showGui
)
{
i
nitGui
(
showGui
);
i
f
(
showGui
)
initGui
(
);
}
public
JP46_Reader_camera
()
{
initGui
(
true
);
initGui
();
}
private
void
initGui
(
Boolean
showGui
)
{
private
void
initGui
()
{
if
(
headless
)
return
;
if
(
IJ
.
versionLessThan
(
"1.39t"
))
return
;
...
...
@@ -1308,6 +1308,7 @@ Exception in thread "Thread-3564" java.lang.ArrayIndexOutOfBoundsException: 8970
* image and calls the plugin, e.g. after setting breakpoints.
* Grabbed from https://github.com/imagej/minimal-ij1-plugin
* @param args unused
*/
public
static
void
main
(
String
[]
args
)
{
// set the plugins.dir property to make the plugin appear in the Plugins menu
Class
<?>
clazz
=
JP46_Reader_camera
.
class
;
...
...
@@ -1319,7 +1320,7 @@ Exception in thread "Thread-3564" java.lang.ArrayIndexOutOfBoundsException: 8970
// run the plugin
IJ
.
runPlugIn
(
clazz
.
getName
(),
""
);
}
*/
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment