Skip to content

Commit

Permalink
Merge remote-tracking branch 'mntm/dev' into keyboard-typing
Browse files Browse the repository at this point in the history
  • Loading branch information
Willy-JL committed Nov 10, 2024
2 parents a093db3 + 79e187b commit 7dd128f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions application/components/ChannelDelegate.qml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ ItemDelegate {
}

TextLabel {
text: control.text
font.capitalization: Font.Capitalize
text: control.text.replace(/^wip-/, '')
color: control.down ? Theme.color.darkorange1 : control.hovered ? Theme.color.lightorange1 : Theme.color.lightorange2
Layout.fillWidth: true
}
Expand Down
4 changes: 2 additions & 2 deletions application/styles/DefaultAmber/ComboBox.qml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ T.ComboBox {

font.pixelSize: 32
font.family: "HaxrCorp 4089"
font.capitalization: Font.Capitalize
font.capitalization: Font.AllUppercase

implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
implicitContentWidth + leftPadding + rightPadding)
Expand Down Expand Up @@ -123,7 +123,7 @@ T.ComboBox {
topPadding: 6 - control.padding
bottomPadding: 6 - control.padding

text: control.displayText
text: control.displayText.replace(/^wip-/, '')
font: control.font

color: !control.enabled ? foregroundColor.disabled : control.down ? foregroundColor.down :
Expand Down

0 comments on commit 7dd128f

Please sign in to comment.