Skip to content

Commit f5a947f

Browse files
committed
Fixed issue in TEditWindow control
1 parent 9eb41cb commit f5a947f

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

delphi-ide-theme-editor/IDE PlugIn/Colorizer.Vcl.Styles.pas

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1313,9 +1313,8 @@ procedure TColorizerFormStyleHook.WMSetText(var Message: TMessage);
13131313
FRedraw := True;
13141314
if not (fsShowing in Form.FormState) and IsWindowVisible(Form.Handle) then
13151315
begin
1316-
//AddLog('TColorizerFormStyleHook.WMSetText', 'Before');
1317-
//Application.ProcessMessages;
1318-
//AddLog('TColorizerFormStyleHook.WMSetText', 'After');
1316+
if not SameText(Form.ClassName, 'TEditWindow') then
1317+
Application.ProcessMessages;
13191318
FRedraw := False;
13201319
SetRedraw(False);
13211320
end;

delphi-ide-theme-editor/IDE PlugIn/DIC_Install.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RequestExecutionLevel admin
2121
!endif
2222

2323
!ifndef VER_MINOR
24-
!define VER_MINOR "4.65.0"
24+
!define VER_MINOR "4.71.0"
2525
!endif
2626

2727
!ifndef IDE_VERSION_DXE

delphi-ide-theme-editor/IDE PlugIn/VersionInfo.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
1 VERSIONINFO
2-
FILEVERSION 0,4,6,5
2+
FILEVERSION 0,4,7,1
33
PRODUCTVERSION 1
44
FILEOS VOS__WINDOWS32
55
FILETYPE VFT_DLL

0 commit comments

Comments
 (0)