Skip to content

Commit

Permalink
spacer: fix graphical glitches
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelmachek committed Nov 28, 2024
1 parent 8bb02e0 commit a3daf8f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apps/spacer/spacer.app.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ let ui = {
},
};

let fix = {}; /* Global for sky library */

/* sky library v0.1.0 */
let sky = {
sats: [],
Expand Down Expand Up @@ -181,6 +183,8 @@ let sky = {
return sys.sent + "." + sys.d23 + "D "+ this.tof(sys.pdop) + " " + this.tof(sys.vdop) + "\n";
},
display: function() {
if (ui.display != 1)
return;
let m = this.old_msg;
let msg = "" + this.tof(m.time) + "\n" +
"q" + m.quality + " " + m.in_view + " " + m.hdop + "\n" +
Expand Down

0 comments on commit a3daf8f

Please sign in to comment.