- Add ComboBox for ringtone selection in Call Settings - Convert MKV ringtones to WAV format (Linphone only supports WAV) - Fix ComboSetting to support dialPlan type for international prefix - Disable account devices feature to prevent API errors - Disable automatic update check on startup - Add ringtone fallback to default when custom file not found - Fix ringtone dropdown to not override setting on initialization Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
472 B
QML
Executable file
18 lines
472 B
QML
Executable file
import QtQuick
|
|
import QtQuick.Controls.Basic as Control
|
|
import QtQuick.Effects
|
|
import QtQuick.Layouts
|
|
import Linphone
|
|
import "qrc:/qt/qml/Linphone/view/Control/Tool/Helper/utils.js" as Utils
|
|
|
|
Button {
|
|
id: mainItem
|
|
textSize: Typography.p1s.pixelSize
|
|
textWeight: Typography.p1s.weight
|
|
padding: Utils.getSizeWithScreenRatio(16)
|
|
// icon.width: width
|
|
// icon.height: width
|
|
radius: width * 2
|
|
// width: Utils.getSizeWithScreenRatio(24)
|
|
height: width
|
|
}
|