Update GTK solar system browser

Add Dwarf Planets and Minor Moons to solar system browser to match Qt version
pull/1367/head
dave-kaye 2022-05-04 11:06:37 -05:00 committed by GitHub
parent c6a320d086
commit da3e81d283
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;