mirror of
https://github.com/Qsgs-Fans/FreeKill.git
synced 2024-11-16 11:42:45 +08:00
be03b04ef0
- 修复了虚拟牌点数相加的bug - 修复cleaner出错直接爆炸 - QML的代码将宽度控制到80以内
17 lines
353 B
QML
17 lines
353 B
QML
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
|
|
SpinBox {
|
|
background: Rectangle { color: "#88EEEEEE" }
|
|
property int answer: value
|
|
property string skill
|
|
// from, to
|
|
|
|
onValueChanged: {
|
|
lcall("SetInteractionDataOfSkill", skill, JSON.stringify(answer));
|
|
roomScene.dashboard.startPending(skill);
|
|
}
|
|
}
|