Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
Cortado
Commits
136405c2
Commit
136405c2
authored
Mar 31, 2010
by
ogg.k.ogg.k
Browse files
if we could not determine the start time, and it is not specified as
a parameter, then use 0
parent
394e3edb
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/com/fluendo/player/Status.java
View file @
136405c2
...
...
@@ -424,7 +424,7 @@ public class Status extends Component implements MouseListener,
}
public
void
setStartTime
(
double
seconds
)
{
startTime
=
seconds
;
startTime
=
seconds
>=
0
?
seconds
:
0
;
component
.
repaint
();
}
...
...
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