You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using last bazaar revision of gtg and the extension currently available on extensions.gnome.org , tasks disappear when gtg is closed and then started again.
This is reproducible by following these steps:
start gtg with the extension enabled
observe the tasks added to the calendar panel (not in the same order than in the Workview, but I'm not sure this is a bug), with [..] at the end of the 10tasks displayed.
completely quit gtg
start gtg
only "[..]" and "Open GTG" remain in the tasklist of the calendar panel
I've not been able to fix it, but I've seen this:
[from extension.js, lines 197-203]
/* delete any element after K */
for (index in topKTasks.slice(K + 1)) {
if (task.button) {
task.button.destroy();
task.button = null;
}
}
which looks pretty strange to me, and which might be related to this bug since it is executed for every task when gtg is started, considering that gtg is sending TaskAdded signal and friends using dbus at every start (AFAIK).
The text was updated successfully, but these errors were encountered:
Using last bazaar revision of gtg and the extension currently available on extensions.gnome.org , tasks disappear when gtg is closed and then started again.
This is reproducible by following these steps:
I've not been able to fix it, but I've seen this:
[from extension.js, lines 197-203]
/* delete any element after K */
for (index in topKTasks.slice(K + 1)) {
if (task.button) {
task.button.destroy();
task.button = null;
}
}
which looks pretty strange to me, and which might be related to this bug since it is executed for every task when gtg is started, considering that gtg is sending TaskAdded signal and friends using dbus at every start (AFAIK).
The text was updated successfully, but these errors were encountered: