mirror of
https://github.com/samsonjs/media.git
synced 2026-04-21 13:55:47 +00:00
Corrected vertical positioning
This commit is contained in:
parent
b87463a857
commit
98a5e199f9
1 changed files with 1 additions and 1 deletions
|
|
@ -171,7 +171,7 @@ import java.util.List;
|
|||
|
||||
public Cue build() {
|
||||
closeSpans();
|
||||
float cueLine = 10 + (5.33f * row);
|
||||
float cueLine = 10 + (5.33f * (row - 1));
|
||||
float cuePosition = 10 + (2.5f * indent);
|
||||
cuePosition = (tabOffset * 2.5f) + cuePosition;
|
||||
return new Cue(new SpannableStringBuilder(captionStringBuilder),
|
||||
|
|
|
|||
Loading…
Reference in a new issue