Skip to content

Commit

Permalink
Support for Delphi 12 Community Edition
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankBijnen committed Jan 21, 2025
1 parent a1023f9 commit 3d1cab1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Source/ExifToolsGui_ShellList.pas
Original file line number Diff line number Diff line change
Expand Up @@ -1224,6 +1224,9 @@ constructor TShellListView.Create(AOwner: TComponent);

FPopulating := false;
DoubleBuffered := true;
{$IFNDEF VER350}
DoubleBufferedMode := TDoubleBufferedMode.dbmRequested;
{$ENDIF}
StyleElements := [seFont, seBorder];
FThumbNailSize := 0;
FGenerating := 0;
Expand Down
4 changes: 2 additions & 2 deletions Source/Main.pas
Original file line number Diff line number Diff line change
Expand Up @@ -2470,7 +2470,7 @@ procedure TFMain.EditQuickKeyDown(Sender: TObject; var Key: Word; Shift: TShiftS

procedure TFMain.ShowPreview;
var
{$IFDEF DEBUG}
{$IFDEF DEBUG_META}
MetaData: TMetaData;
Tag: string;
{$ENDIF}
Expand Down Expand Up @@ -2502,7 +2502,7 @@ procedure TFMain.ShowPreview;
8:
Rotate := 270;
end;
{$IFDEF DEBUG}
{$IFDEF DEBUG_META}
MetaData := TMetaData.Create;
try
MetaData.ReadMeta(FPath, [gmXMP, gmGPS]);
Expand Down

0 comments on commit 3d1cab1

Please sign in to comment.