feat(ui/views/App/Calls/IncallFullscreenWindow): supports telephone keypad

This commit is contained in:
Ronan Abhamon 2017-04-19 09:19:20 +02:00
parent fbd2f7551c
commit d9e28f356a

View file

@ -181,6 +181,12 @@ Window {
iconSize: CallStyle.header.iconSize
visible: !hideButtons
ActionButton {
icon: 'tel_keypad'
onClicked: telKeypad.visible = !telKeypad.visible
}
ActionButton {
icon: 'screenshot'
@ -357,4 +363,15 @@ Window {
}
}
}
// ---------------------------------------------------------------------------
// TelKeypad.
// ---------------------------------------------------------------------------
TelKeypad {
id: telKeypad
call: incall.call
visible: false
}
}