diff options
author | Steve Sakoman <sakoman@otto.(none)> | 2008-10-24 15:20:37 -0700 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-11-18 16:34:52 +0100 |
commit | 7a431ab82aa19e5eeb542504284e6c1a9c13afdb (patch) | |
tree | d1a4988895a45af1e5d28d6549e5a81ef3325ed3 /packages/e17/e-wm | |
parent | 825512a5a363067e37c725c48571830e23dc36f0 (diff) |
e-wm: modify applications.menu so that Games menu item contains apps with either "Game" or "Games" as the Category, and Internet contains apps with either "Internet" or "Network"
Diffstat (limited to 'packages/e17/e-wm')
-rw-r--r-- | packages/e17/e-wm/applications.menu | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/packages/e17/e-wm/applications.menu b/packages/e17/e-wm/applications.menu index 032c6b7d26..77c6f0429c 100644 --- a/packages/e17/e-wm/applications.menu +++ b/packages/e17/e-wm/applications.menu @@ -43,7 +43,10 @@ <Directory>Games.directory</Directory> <Include> <And> - <Category>Games</Category> + <Or> + <Category>Game</Category> + <Category>Games</Category> + </Or> </And> </Include> </Menu> @@ -53,7 +56,10 @@ <Directory>Internet.directory</Directory> <Include> <And> - <Category>Network</Category> + <Or> + <Category>Internet</Category> + <Category>Network</Category> + </Or> </And> </Include> </Menu> |