Skip to content
Snippets Groups Projects
Commit 81dd17dd authored by pippin's avatar pippin Committed by schneider
Browse files

st3m: allow Hidden as menu category in flow3r.toml

parent 3e11f698
No related branches found
No related tags found
1 merge request!168Construct gr33nhouse
This commit is part of merge request !168. Comments created here will be created in the context of that merge request.
......@@ -121,7 +121,7 @@ class BundleMetadata:
if "menu" not in app or type(app["menu"]) != str:
raise BundleMetadataBroken("missing app.menu key")
self.menu = app["menu"]
if self.menu not in ["Apps", "Music", "Badge"]:
if self.menu not in ["Apps", "Music", "Badge", "Hidden"]:
raise BundleMetadataBroken("app.menu must be either Apps, Music or Badge")
self._t = t
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment