My application slows down proportional to the number of ContextMenus instantiated. The slowdown is not noticable before the number of ContextMenus becomes very large.
The issue is very easy to reproduce. Just generate a List like this:
```
int n = 3000;
List list = new List();
for (int i = 0; i < n; i++)
list.add(new ContextMenu());
```
At 3000 ContextMenus the slowdown is very significant.
The issue is very easy to reproduce. Just generate a List like this:
```
int n = 3000;
List list = new List();
for (int i = 0; i < n; i++)
list.add(new ContextMenu());
```
At 3000 ContextMenus the slowdown is very significant.