mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-02 07:22:03 +02:00
disabled warning about non UTF8 fonts until we have an automatic monospace font selection
git-svn-id: trunk@9901 -
This commit is contained in:
parent
1d73c0b6f1
commit
6ad121660c
@ -7497,7 +7497,8 @@ begin
|
||||
|
||||
// handle versioninfo
|
||||
VersionInfo:=Project1.VersionInfo;
|
||||
Result := VersionInfo.CompileRCFile(Project1.MainFilename,MainBuildBoss.GetTargetOS(true));
|
||||
Result := VersionInfo.CompileRCFile(Project1.MainFilename,MainBuildBoss.
|
||||
GetTargetOS(true));
|
||||
if Result <> mrOk then exit;
|
||||
for Count := 1 to VersionInfo.VersionInfoMessages.Count do
|
||||
MessagesView.AddMsg(Format(VersionInfo.VersionInfoMessages[Count - 1],
|
||||
|
@ -5420,9 +5420,13 @@ begin
|
||||
and ((EditorOpts.DoNotWarnForFont='')
|
||||
or (EditorOpts.DoNotWarnForFont<>CurFont.Name))
|
||||
then begin
|
||||
{$IFDEF HasMonoSpaceFonts}
|
||||
DummyResult:=QuestionDlg(lisUEFontWith,
|
||||
Format(lisUETheCurre, [#13, #13]),
|
||||
mtWarning, [mrIgnore, mrYesToAll, lisUEDoNotSho], 0);
|
||||
{$ELSE}
|
||||
DummyResult:=mrYesToAll;
|
||||
{$ENDIF}
|
||||
if DummyResult=mrYesToAll then begin
|
||||
if EditorOpts.DoNotWarnForFont<>CurFont.Name then begin
|
||||
EditorOpts.DoNotWarnForFont:=CurFont.Name;
|
||||
|
Loading…
Reference in New Issue
Block a user