Changeset 272 for branches


Ignore:
Timestamp:
Jul 2, 2020, 11:15:34 PM (4 years ago)
Author:
chronos
Message:
  • Fixed: Input dialog text was not updated correctly.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/highdpi/Packages/DpiControls/UDpiControls.pas

    r271 r272  
    592592  TDpiEdit = class(TDpiWinControl)
    593593  private
    594     FText: string;
    595594    function GetSelLength: Integer;
    596595    function GetSelStart: Integer;
     
    12821281function TDpiEdit.GetText: TCaption;
    12831282begin
    1284   Result := FText;
     1283  Result := GetNativeEdit.Text;
    12851284end;
    12861285
    12871286procedure TDpiEdit.SetText(AValue: TCaption);
    12881287begin
    1289   FText := AValue;
    12901288  GetNativeEdit.Text := AValue;
    12911289end;
Note: See TracChangeset for help on using the changeset viewer.