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
Branches
Tags
No related merge requests found
...@@ -121,7 +121,7 @@ class BundleMetadata: ...@@ -121,7 +121,7 @@ class BundleMetadata:
if "menu" not in app or type(app["menu"]) != str: if "menu" not in app or type(app["menu"]) != str:
raise BundleMetadataBroken("missing app.menu key") raise BundleMetadataBroken("missing app.menu key")
self.menu = app["menu"] 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") raise BundleMetadataBroken("app.menu must be either Apps, Music or Badge")
self._t = t self._t = t
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment