limited the length of the displayed server name
- added auto-selection of the first available protocol when changing the server on the PageShare page
This commit is contained in:
parent
c0aca97083
commit
f40bf2d9ba
9 changed files with 136 additions and 115 deletions
|
|
@ -8,6 +8,8 @@ import "TextTypes"
|
|||
RadioButton {
|
||||
id: root
|
||||
|
||||
property int textMaximumLineCount: 2
|
||||
property int textElide: Qt.ElideRight
|
||||
property string descriptionText
|
||||
|
||||
property string hoveredColor: Qt.rgba(1, 1, 1, 0.05)
|
||||
|
|
@ -104,6 +106,8 @@ RadioButton {
|
|||
|
||||
ListItemTitleType {
|
||||
text: root.text
|
||||
maximumLineCount: root.textMaximumLineCount
|
||||
elide: root.textElide
|
||||
|
||||
color: {
|
||||
if (root.checked) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue