Remove empty categories. Revert hardcoding of categories

master
Marius Kintel 2015-03-09 11:36:57 -04:00
parent e7971b6a60
commit 4db81672ca
2 changed files with 0 additions and 7 deletions

View File

@ -16,10 +16,6 @@
"recursion.scad",
"polygon_areas.scad"
],
"Shapes": [
],
"Extrusion": [
],
"Advanced": [
"offset.scad",
"surface_image.scad",

View File

@ -114,9 +114,6 @@ QStringList UIUtils::exampleCategories()
categories << QString::fromStdString(v.first);
}
}
// FIXME: How do we get these translated if we read them from JSON?
// categories << N_("Basics") << N_("Functions") << N_("Shapes") << N_("Extrusion") << N_("Advanced");
return categories;
}