Closed ZhongYic00 closed 6 months ago
[APPROVALNOTIFIER] This PR is NOT APPROVED
This pull-request has been approved by: justforlxz, ZhongYic00
The full list of commands accepted by this bot can be found here.
Summary:
forceActiveFocus
来设置焦点,这可能不是最佳实践,因为焦点应该由用户或脚本控制。onActiveFocusChanged
中,直接调用了Helper.activatedSurface = surface
,这可能会导致不必要的更新,应该检查surface
是否确实发生了变化。selectSurfaceToActivate
函数中,使用了findIf
来查找未最小化的窗口,但是没有检查surfacesModel
是否为空,可能会导致IndexOutOfRange
错误。WindowDecoration.qml
中的requestToggleMaximize
信号已被重命名为requestMaximize
,但是相关的代码可能还没有更新,需要检查是否所有相关调用都已经更新。LayerSurface.qml
中的focus
属性被设置为true
,这可能会导致非预期的行为,因为焦点应该是由用户或脚本控制。