summaryrefslogtreecommitdiff
path: root/test/utils.js
blob: 2597fd8ce65021bd99246d137ec074085fa3f60e (plain)
1
2
3
4
5
6
const Gtk = imports.gi.Gtk;

function update_gui () {
    while (Gtk.events_pending())
        Gtk.main_iteration(false);
}