minor, true -> GLib.SOURCE_CONTINUE

This commit is contained in:
abakkk 2020-01-02 01:44:08 +01:00
parent 97c8393835
commit 7c7d75a2ba
1 changed files with 1 additions and 1 deletions

View File

@ -397,7 +397,7 @@ var DrawingArea = new Lang.Class({
this.cursorTimeoutId = Mainloop.timeout_add(600, () => {
this.textHasCursor = !this.textHasCursor;
this._redisplay();
return true;
return GLib.SOURCE_CONTINUE;
});
},