Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
BigDataViewer_Core_Extension
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
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
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
BioinformaticDataCompression
BigDataViewer_Core_Extension
Commits
0932bd66
Commit
0932bd66
authored
7 years ago
by
Tobias Pietzsch
Browse files
Options
Downloads
Patches
Plain Diff
clean up, add TODO
parent
b3082ba0
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/bdv/viewer/ViewerPanel.java
+2
-12
2 additions, 12 deletions
src/main/java/bdv/viewer/ViewerPanel.java
with
2 additions
and
12 deletions
src/main/java/bdv/viewer/ViewerPanel.java
+
2
−
12
View file @
0932bd66
...
...
@@ -286,7 +286,7 @@ public class ViewerPanel extends JPanel implements OverlayRenderer, TransformLis
public
ViewerPanel
(
final
List
<
SourceAndConverter
<
?
>
>
sources
,
final
int
numTimepoints
,
final
CacheControl
cacheControl
,
final
ViewerOptions
optional
,
final
ActionMap
actionMap
)
{
super
(
new
BorderLayout
(),
false
);
setPreferredSize
(
new
Dimension
(
600
,
500
)
);
options
=
optional
.
values
;
this
.
actionMap
=
actionMap
;
...
...
@@ -332,16 +332,6 @@ public class ViewerPanel extends JPanel implements OverlayRenderer, TransformLis
mouseCoordinates
=
new
MouseCoordinateListener
();
display
.
addHandler
(
mouseCoordinates
);
display
.
addComponentListener
(
new
ComponentAdapter
()
{
@Override
public
void
componentResized
(
final
ComponentEvent
e
)
{
requestRepaint
();
display
.
removeComponentListener
(
this
);
}
}
);
final
JPanel
sliderPanel
=
new
JPanel
();
sliderPanel
.
setLayout
(
new
BoxLayout
(
sliderPanel
,
BoxLayout
.
X_AXIS
)
);
...
...
@@ -526,7 +516,7 @@ public class ViewerPanel extends JPanel implements OverlayRenderer, TransformLis
nextKeyframeButton
.
setEnabled
(
enable
);
}
public
KeyFramePopupMenu
getKeyFramePopupMenu
()
public
KeyFramePopupMenu
getKeyFramePopupMenu
()
// TODO: remove!
{
return
this
.
keyframePanel
.
getKeyFramePopupMenuPopupMenu
();
}
...
...
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