Skip to content

Commit

Permalink
fixed: Marquee scrolling colors/bold switch to default, not those spe…
Browse files Browse the repository at this point in the history
…cified
  • Loading branch information
kwindrem committed Mar 3, 2024
1 parent 44e622a commit 7061274
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
5 changes: 3 additions & 2 deletions FileSets/VersionIndependent/MarqueeEnhanced.qml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,12 @@ Rectangle {
id: _textToDisplay
text: _text.text + "..." + _text.text
font.pixelSize: 13
color: "#fff"
color: _text.color
font.bold: _text.font.bold
width: parent.width
anchors.verticalCenter: parent.verticalCenter
// use spcified alignment unless name won't fit or are scrolling, then align left
horizontalAlignment: marqueeTimer.running ? Text.AlignLeft : textHorizontalAlignment
horizontalAlignment: Text.AlignLeft
visible: longName
}

Expand Down
3 changes: 3 additions & 0 deletions changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v10.8:
fixed: Marquee scrolling colors/bold switch to default, not those specified

v10.7:
add support for v3.30~11

Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v10.7
v10.8

0 comments on commit 7061274

Please sign in to comment.