Skip to content

Commit

Permalink
Fix default magnitude range when no star catalog are selected
Browse files Browse the repository at this point in the history
  • Loading branch information
pchev committed Oct 29, 2021
1 parent 417cb6f commit 02339d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skychart/cu_skychart.pas
Expand Up @@ -614,7 +614,7 @@ function Tskychart.InitCatalog(fov:double): boolean;
Fcatalog.cfgcat.Quick := false;
Fcatalog.cfgcat.NebMagMax := Fcatalog.cfgshr.NebMagFilter[FieldNum];
Fcatalog.cfgcat.NebSizeMin := Fcatalog.cfgshr.NebSizeFilter[FieldNum];
Fplot.cfgchart.min_ma := 1;
Fplot.cfgchart.min_ma := 6;
magmax := 1;
{ activate the star catalog}
InitStarC(dsbase, 5.5);
Expand Down

0 comments on commit 02339d6

Please sign in to comment.