mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-29 09:49:20 +00:00
* 'Ctrl+Shift+W' (or V): accept with video the last incoming call.
* 'Ctrl+Shift+A': accept without video the last incoming call.
* 'Ctrl+Shift+D': terminate the last call.
* 'Ctrl+Shift+E': Enable/disable echo cancellation.
* 'Ctrl+Shift+L': Unmute/Mute speaker.
* 'Ctrl+Shift+M': Unmute/Mute microphone.
- Request application focus when hovering a call notification.
- Forbid to calibrate echo cancellation while being in call because it is not supported.
# Conflicts:
# CHANGELOG.md
# linphone-app/src/components/settings/SettingsModel.hpp
# linphone-app/ui/modules/Common/Form/MouseArea.qml
13 lines
312 B
QML
13 lines
312 B
QML
import QtQuick 2.7 as Quick
|
|
|
|
import Common 1.0
|
|
import Common.Styles 1.0
|
|
|
|
Quick.MouseArea {
|
|
property int hoveredCursor: Qt.PointingHandCursor
|
|
property bool interactive: true
|
|
cursorShape: containsMouse && interactive
|
|
? hoveredCursor
|
|
: Qt.ArrowCursor
|
|
hoverEnabled: interactive
|
|
}
|