Browse Source

FIX: Find files, make title nicer #685 (#695)

AlkaliX 2 years ago
parent
commit
02a004568d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/fFindDlg.pas

+ 2 - 2
src/fFindDlg.pas

@@ -2104,9 +2104,9 @@ begin
 
   if (AWindowCaptionStyle and $08) <> 0 then
   begin
-    sBuildingCaptionName := sBuildingCaptionName + ' - File: ' + GetFileMask;
+    sBuildingCaptionName := sBuildingCaptionName + ' - Files: ' + GetFileMask;
     if cbFindText.Checked then
-      sBuildingCaptionName := sBuildingCaptionName + ' - Text:' + cmbFindText.Text;
+      sBuildingCaptionName := sBuildingCaptionName + ' - Text: ' + cmbFindText.Text;
   end;
 
   Caption := sBuildingCaptionName;