Codebase list gnome-shell-extension-appindicator / ce7c863
testTool: Remove trailing spaces Marco Trevisan (TreviƱo) 5 years ago
1 changed file(s) with 6 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
2525 title: "test",
2626 application: app
2727 });
28
28
2929 var menu = new Gtk.Menu();
3030
3131 var item = Gtk.MenuItem.new_with_label("A standard item");
3333
3434 item = Gtk.MenuItem.new_with_label("Foo");
3535 menu.append(item);
36
36
3737 item = Gtk.ImageMenuItem.new_with_label("Calculator");
3838 item.image = Gtk.Image.new_from_icon_name("gnome-calculator", Gtk.IconSize.MENU);
3939 menu.append(item);
40
40
4141 item = Gtk.CheckMenuItem.new_with_label("Check me!");
4242 menu.append(item);
4343
4848
4949 item = Gtk.MenuItem.new_with_label("Blubdablub");
5050 sub.append(item);
51
51
5252 item = new Gtk.SeparatorMenuItem();
5353 menu.append(item);
5454
7878
7979 item = Gtk.MenuItem.new_with_label("abcdefg");
8080 submenu2.append(item);
81
81
8282 item = new Gtk.SeparatorMenuItem();
8383 menu.append(item);
8484
8585 var group = [];
86
86
8787 for (let i = 0; i < 5; ++i) {
8888 item = Gtk.RadioMenuItem.new_with_label(group, "Example Radio "+i);
8989 group = Gtk.RadioMenuItem.prototype.get_group.apply(item)//.get_group();