mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-08 14:18:17 +02:00
Fixed checking CurrentDebuggerPropertiesConfig for nil.
Related to 4f145f9709
This commit is contained in:
parent
c28cc988ec
commit
9d94d1fa28
@ -796,7 +796,7 @@ begin
|
||||
s:=MakeExeComboBox.Text;
|
||||
if s<>'' then
|
||||
EnvironmentOptions.MakeFilename:=s;
|
||||
if not (FSkipDebugger and (EnvironmentOptions.CurrentDebuggerPropertiesConfig <> nil))
|
||||
if not FSkipDebugger and (EnvironmentOptions.CurrentDebuggerPropertiesConfig <> nil)
|
||||
then begin
|
||||
s:=DebuggerComboBox.Text;
|
||||
if s<>'' then begin
|
||||
|
Loading…
Reference in New Issue
Block a user