Ignore:
Timestamp:
Jul 5, 2025, 9:46:37 AM (12 hours ago)
Author:
chronos
Message:
  • Added: Allow to move with up, down, page up, page down, home and end keys in selection dialog.
  • Added: Open product selection dialog with P key in city dialog.
  • Added: Close city dialog with return key.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LocalPlayer/CityScreen.pas

    r622 r662  
    17481748  Shift: TShiftState);
    17491749begin
     1750  if Key = VK_P then begin
     1751    if ProdHint then begin
     1752      ProdHint := False;
     1753      SmartUpdateContent;
     1754    end;
     1755    ChooseProject;
     1756  end else
     1757  if Key = VK_RETURN then begin
     1758    CloseBtnClick(Self);
     1759  end else
    17501760  if ((Key = VK_UP) or (Key = VK_NUMPAD8)) and (cix >= 0) and
    17511761    (WindowMode = wmPersistent) then
Note: See TracChangeset for help on using the changeset viewer.