mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-19 20:48:09 +00:00
- Manage missing call count. Reset call notifications when: App get focus and the logs are shown, and when we click on a log - Refactoring of MouseArea to centralize cursor shapes - Update SDK
11 lines
220 B
QML
11 lines
220 B
QML
import QtQuick 2.7 as Quick
|
|
|
|
import Common 1.0
|
|
import Common.Styles 1.0
|
|
|
|
Quick.MouseArea {
|
|
cursorShape: containsMouse
|
|
? Qt.PointingHandCursor
|
|
: Qt.ArrowCursor
|
|
hoverEnabled: true
|
|
}
|