Skip to content

Commit

Permalink
#3630 add test that causes wayland hang
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Oct 1, 2022
1 parent 3aeb740 commit dc87f22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xpra/platform/xposix/appindicator_tray.py
Expand Up @@ -156,8 +156,8 @@ def main(): # pragma: no cover
sub = Gtk.MenuItem(label="Sub Menu Item 1")
subsubmenu = Gtk.Menu()
sub.set_submenu(subsubmenu)
subsubmenu.append(Gtk.MenuItem(label="Sub Sub Menu Item 1"))
subsubmenu.append(Gtk.MenuItem(label="Sub Sub Menu Item 2"))
for n in range(1, 1000):
subsubmenu.append(Gtk.MenuItem(label="Sub Sub Menu Item "+str(n)))
submenu.append(sub)
sub = Gtk.MenuItem(label="Sub Menu Item 2")
submenu.append(sub)
Expand Down

0 comments on commit dc87f22

Please sign in to comment.