Update GTK solar system browser

Add Dwarf Planets and Minor Moons to solar system browser to match Qt version
master
dave-kaye 2022-05-04 11:06:37 -05:00 committed by Hleb Valoshka
parent c6a320d086
commit 804a5de2a7
1 changed files with 6 additions and 0 deletions

View File

@ -149,9 +149,15 @@ static void addPlanetarySystemToTree(const PlanetarySystem* sys, GtkTreeStore* s
case Body::Planet:
type = "Planet";
break;
case Body::DwarfPlanet:
type = "Dwarf Planet";
break;
case Body::Moon:
type = "Moon";
break;
case Body::MinorMoon:
type = "Minor Moon";
break;
case Body::Asteroid:
type = "Asteroid";
break;