Changeset 426 for trunk/LocalPlayer


Ignore:
Timestamp:
Apr 26, 2022, 8:23:31 PM (2 years ago)
Author:
chronos
Message:
  • Fixed: Show correctly buttons on task bar with localized captions in windowed mode on Windows.
Location:
trunk/LocalPlayer
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LocalPlayer/MessgEx.lfm

    r290 r426  
    66  BorderIcons = []
    77  BorderStyle = bsNone
    8   Caption = 'C-evo'
     8  Caption = 'Message'
    99  ClientHeight = 134
    1010  ClientWidth = 418
  • trunk/LocalPlayer/MessgEx.pas

    r425 r426  
    192192  Ticks: TDateTime;
    193193begin
     194  Caption := Phrases.Lookup('TITLE_MESSAGE');
    194195  if GameMode = cMovie then
    195196  begin
     
    548549end;
    549550
    550 
    551 initialization
    552 
    553551end.
  • trunk/LocalPlayer/Rates.pas

    r362 r426  
    164164procedure TRatesDlg.FormShow(Sender: TObject);
    165165begin
     166  Caption := Phrases.Lookup('TITLE_RATES');
    166167  if MyRO.Wonder[woLiberty].EffectiveOwner = me then
    167168  begin
  • trunk/LocalPlayer/TechTree.pas

    r315 r426  
    132132  NewHeight: Integer;
    133133begin
     134  Caption := Phrases2.Lookup('MENU_ADVTREE');
    134135  if Image = nil then begin
    135136    Image := TBitmap.Create;
  • trunk/LocalPlayer/Wonders.pas

    r352 r426  
    7676procedure TWondersDlg.FormShow(Sender: TObject);
    7777begin
     78  Caption := Phrases.Lookup('TITLE_WONDERS');
    7879  Selection := -1;
    7980  OffscreenPaint;
Note: See TracChangeset for help on using the changeset viewer.