fix: 复制缩放配置时复制缩放模式

This commit is contained in:
刘旭 2022-10-17 12:14:21 +08:00
commit e193a35d64

View file

@ -19,6 +19,7 @@ enum class CursorScaling {
// 默认规则 Name、PathRule、ClassNameRule 均为空
struct ScalingProfile {
void Copy(const ScalingProfile& other) noexcept {
scalingMode = other.scalingMode;
cursorScaling = other.cursorScaling;
customCursorScaling = other.customCursorScaling;
isCroppingEnabled = other.isCroppingEnabled;