mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 19:18:01 +02:00
Fixed checking CurrentDebuggerPropertiesConfig for nil.
Related to4f145f9709
(cherry picked from commit9d94d1fa28
)
This commit is contained in:
parent
3a8059f59c
commit
e1bf1d6a75
@ -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