Qt5, Qt6: allow arrow keys at design time. issue #41453

This commit is contained in:
zeljan1 2025-02-22 18:56:17 +01:00
parent 17407a1e4d
commit 9ad5559338
2 changed files with 2 additions and 2 deletions

View File

@ -5530,7 +5530,7 @@ end;
function TQtWidget.ProcessArrowKeys: Boolean;
begin
Result := False;
Result := Assigned(LCLObject) and (csDesigning in LCLObject.ComponentState);
end;
class procedure TQtWidget.removeProperty(AObject: QObjectH; APropName: PAnsiChar);

View File

@ -5534,7 +5534,7 @@ end;
function TQtWidget.ProcessArrowKeys: Boolean;
begin
Result := False;
Result := Assigned(LCLObject) and (csDesigning in LCLObject.ComponentState);
end;
class procedure TQtWidget.removeProperty(AObject: QObjectH; APropName: PAnsiChar);