|
|
|
@ -43,11 +43,10 @@ ApplicationWindow { |
|
|
|
|
|
|
|
|
|
Layout.leftMargin: 8 |
|
|
|
|
Layout.rightMargin: 8 |
|
|
|
|
spacing: 16 |
|
|
|
|
|
|
|
|
|
function validateMic() { |
|
|
|
|
if (CallManager.mics.length == 0) { |
|
|
|
|
warningDialog.text = "No microphone found."; |
|
|
|
|
warningDialog.text = qsTr("No microphone found."); |
|
|
|
|
warningDialog.open(); |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
@ -61,6 +60,10 @@ ApplicationWindow { |
|
|
|
|
displayName: TimelineManager.timeline.roomName |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Item { |
|
|
|
|
implicitWidth: cameraCombo.visible ? 16 : 64 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Button { |
|
|
|
|
text: qsTr("Voice") |
|
|
|
|
icon.source: "qrc:/icons/icons/ui/place-call.png" |
|
|
|
@ -88,7 +91,6 @@ ApplicationWindow { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Button { |
|
|
|
|
palette: colors |
|
|
|
|
text: qsTr("Cancel") |
|
|
|
|
onClicked: { |
|
|
|
|
close(); |
|
|
|
@ -96,6 +98,9 @@ ApplicationWindow { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ColumnLayout { |
|
|
|
|
spacing: 8 |
|
|
|
|
|
|
|
|
|
RowLayout { |
|
|
|
|
|
|
|
|
|
Layout.leftMargin: 8 |
|
|
|
@ -136,3 +141,4 @@ ApplicationWindow { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|