File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -923,9 +923,20 @@ class PhraseMaker {
923923 lyricsRow . setAttribute ( "id" , "lyricRow" ) ;
924924 lyricsRow . style . position = "sticky" ;
925925
926+ // Label Icon
927+ cell = lyricsRow . insertCell ( ) ;
928+ cell . setAttribute ( "colspan" , "1" ) ;
929+ cell . className = "headcol" ;
930+ cell . style . position = "sticky" ;
931+ cell . style . left = "1.2px" ;
932+ cell . style . zIndex = "1" ;
933+ cell . style . backgroundColor = platformColor . lyricsLabelBackground ;
934+ cell . style . textAlign = "center" ;
935+ cell . innerHTML = `<img src="images/pen.svg" height="${ iconSize } " width="${ iconSize } " vertical-align="middle">` ;
936+
926937 // Label Cell (Fixed like "note value")
927938 cell = lyricsRow . insertCell ( ) ;
928- cell . setAttribute ( "colspan" , "2 " ) ;
939+ cell . setAttribute ( "colspan" , "1 " ) ;
929940 cell . className = "headcol" ;
930941 cell . style . position = "sticky" ;
931942 cell . style . left = "1.2px" ;
You can’t perform that action at this time.
0 commit comments