Skip to content
Snippets Groups Projects
Commit fe03c25a authored by Pierre Lamot's avatar Pierre Lamot Committed by Jean-Baptiste Kempf
Browse files

qml: force text labels to use PlainText mode

The default mode was preventing double click events from propagating in some cases
(KeyNavigableTableView)

Unless for very specific context we don't need rich/html text formatting
parent e3730eae
No related branches found
No related tags found
1 merge request!2203qml: force text labels to use PlainText mode
Pipeline #241414 passed with stage
in 17 minutes and 34 seconds
......@@ -23,4 +23,5 @@ T.Label {
elide: Text.ElideRight
font.pixelSize: VLCStyle.fontSize_normal
color: VLCStyle.colors.caption
textFormat: Text.PlainText
}
......@@ -27,4 +27,5 @@ T.Label {
pixelSize: VLCStyle.icon_small
family: VLCIcons.fontFamily
}
textFormat: Text.PlainText
}
......@@ -25,4 +25,5 @@ T.Label {
font.weight: Font.DemiBold
color: VLCStyle.colors.text
verticalAlignment: Text.AlignVCenter
textFormat: Text.PlainText
}
......@@ -24,4 +24,5 @@ T.Label {
font.pixelSize: VLCStyle.fontSize_normal
color: VLCStyle.colors.menuCaption
verticalAlignment: Text.AlignVCenter
textFormat: Text.PlainText
}
......@@ -25,4 +25,5 @@ T.Label {
font.weight: Font.DemiBold
color: VLCStyle.colors.text
verticalAlignment: Text.AlignVCenter
textFormat: Text.PlainText
}
......@@ -24,4 +24,5 @@ T.Label {
font.pixelSize: VLCStyle.fontSize_xxxlarge
font.weight: Font.Bold
color: VLCStyle.colors.text
textFormat: Text.PlainText
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment