View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0002328 | SOGo Connector | GUI | public | 2013-05-28 10:53 | 2014-02-04 18:54 |
| Reporter | MichelR | Assigned To | ludovic | ||
| Priority | normal | Severity | feature | Reproducibility | always |
| Status | closed | Resolution | fixed | ||
| Fixed in Version | 24.0.4 | ||||
| Summary | 0002328: provide some visual feedback for sync | ||||
| Description | Sogo Connector for Thunderbird v17.0.5 There is no visual feedback while syncing:
It's a complement of bug 0001044 (http://sogo.nu/bugs/view.php?id=1044) : ask for visual feedback if sync error. | ||||
| Tags | No tags attached. | ||||
|
2013-08-15 13:10
|
notification2_michelr.diff (1,123 bytes)
diff --git a/chrome/content/sogo-connector/general/sync.addressbook.groupdav.js b/chrome/content/sogo-connector/general/sync.addressbook.groupdav.js
index 848c38b..47808f2 100644
--- a/chrome/content/sogo-connector/general/sync.addressbook.groupdav.js
+++ b/chrome/content/sogo-connector/general/sync.addressbook.groupdav.js
@@ -1457,8 +1457,13 @@ new:
let total = (this.localUploads
+ this.serverDownloadsCount
+ this.serverDeletes.length);
- if (total > 0)
- this.progressMgr.unregisterAddressBook(this.gURL);
+ if (total > 0) {
+ // allow a delay before hiding the progressNotification
+ var that = this;
+ window.setTimeout(function() {
+ that.progressMgr.unregisterAddressBook(that.gURL);
+ }, 1000);
+ }
dump(" " + this.mCounter +"/sync with " + this.gURL + " has ended.\n\n");
this.context.requests[this.gURL] = null;
}
|
|
I just added a small patch that allow to show the progress bar for 1 sec when saving a card. I don't know ig it's the tright way to do, or if it generates some side effects. |
|
|
https://github.com/inverse-inc/sogo-connector.tb24/commit/88b2a7fdac4b32f9837146bd5ddd793b7976577e |
|
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2013-05-28 10:53 | MichelR | New Issue | |
| 2013-08-15 13:10 | MichelR | File Added: notification2_michelr.diff | |
| 2013-08-15 13:11 | MichelR | Note Added: 0005898 | |
| 2013-09-17 19:37 |
|
Status | new => assigned |
| 2013-09-17 19:37 |
|
Assigned To | => jraby |
| 2014-02-04 18:54 | ludovic | Note Added: 0006492 | |
| 2014-02-04 18:54 | ludovic | Status | assigned => closed |
| 2014-02-04 18:54 | ludovic | Assigned To | jraby => ludovic |
| 2014-02-04 18:54 | ludovic | Resolution | open => fixed |
| 2014-02-04 18:54 | ludovic | Fixed in Version | => 24.0.4 |