We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d5d0d5 commit e372d9dCopy full SHA for e372d9d
ufullscreen.pas
@@ -391,6 +391,11 @@ procedure TfrmFullscreen.FormClose(Sender: TObject;
391
frmMain.DoneFullscreen(FstrCurr);
392
end;
393
394
+ // Re-enabling the Screensaver
395
+ {$IFDEF Windows}
396
+ SetThreadExecutionState(ES_CONTINUOUS);
397
+ {$ENDIF}
398
+
399
//ShowFullScreen(false);
400
401
umain.pas
@@ -245,7 +245,7 @@ procedure TfrmMain.FormCreate(Sender: TObject);
245
folderfiles:TStringlist;
246
fileSearchMask,fileFolder:string;
247
begin
248
- FstrAppVer:='1.2.7';
+ FstrAppVer:='1.2.9';
249
// Init Main form properties.
250
self.Caption:=ReplaceStr(ExtractFileName(ParamStr(0)),ExtractFileExt(ParamStr(0)),'');
251
self.Visible:=false;
0 commit comments