Skip to content

Commit 9aab7a0

Browse files
committed
update release notes
1 parent 91e8863 commit 9aab7a0

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

RELEASE_NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
### RELEASE 1.6.4
44

55
FIXES:
6-
1. Fix `CFG-VALSET ACK-NAK` error when configurating ZED-X20P as base station.
6+
1. Fix `CFG-VALSET ACK-NAK` error when configuring ZED-X20P as base station.
77
1. Fix `AttributeError: ... has no attribute frm_socketserver` error in Server Config panel when configuring Septentrio devices for SVIN.
88

99
ENHANCEMENTS:

src/pygpsclient/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1164,7 +1164,7 @@ def priority(col):
11641164
if hasattr(self, "frm_status"):
11651165
color = INFOCOL if color == "blue" else color
11661166
self.status_label.config(text=message, fg=color)
1167-
self.update_idletasks()
1167+
self.status_label.update()
11681168
else: # defer message until frm_status is instantiated
11691169
if isinstance(self._deferredmsg, tuple):
11701170
defpty = priority(self._deferredmsg[1])

src/pygpsclient/toplevel_dialog.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,5 @@ def status_label(self, message: str | tuple[str, str]):
248248
if len(message) > 100:
249249
message = "..." + message[-100:]
250250

251-
self.status_label.after(
252-
0, self.status_label.config, {"text": message, "fg": color}
253-
)
254-
self.update_idletasks()
251+
self.status_label.config(text=message, fg=color)
252+
self.status_label.update()

0 commit comments

Comments
 (0)