Codebase list gnome-shell-extension-appindicator / 3be777d
testTool: Show a longer label by default Marco Trevisan (TreviƱo) 3 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
122122
123123 item = Gtk.MenuItem.new_with_label("Set Label");
124124 item.connect('activate', () => {
125 indicator.set_label(''+new Date().getSeconds(), 'Blub');
125 indicator.set_label(''+new Date().getTime(), 'Blub');
126126 });
127127 menu.append(item);
128128