mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-25 15:58:16 +00:00
23 lines
479 B
QML
23 lines
479 B
QML
import QtQuick 2.7
|
|
|
|
import Common 1.0
|
|
|
|
// ===================================================================
|
|
// An icon image properly resized.
|
|
// ===================================================================
|
|
|
|
Image {
|
|
property int iconSize
|
|
property string icon
|
|
|
|
height: iconSize
|
|
width: iconSize
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
source: icon
|
|
? Constants.imagesPath + icon + Constants.imagesFormat
|
|
: ''
|
|
|
|
// Warning: Perfomance cost.
|
|
mipmap: true
|
|
}
|