From f826a4c5e8b854f9f092365f688b5043affb3c98 Mon Sep 17 00:00:00 2001 From: Blake Harnden <32446120+bharnden@users.noreply.github.com> Date: Wed, 4 Mar 2020 20:42:40 -0800 Subject: [PATCH] new gui fixed error display when daemon is not running --- daemon/core/gui/app.py | 2 +- daemon/core/gui/coreclient.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/daemon/core/gui/app.py b/daemon/core/gui/app.py index 10975eef..195f0e91 100644 --- a/daemon/core/gui/app.py +++ b/daemon/core/gui/app.py @@ -44,7 +44,7 @@ class Application(tk.Frame): self.core = CoreClient(self, proxy) self.setup_app() self.draw() - self.core.set_up() + self.core.setup() def setup_scaling(self): self.fonts_size = {name: font.nametofont(name)["size"] for name in font.names()} diff --git a/daemon/core/gui/coreclient.py b/daemon/core/gui/coreclient.py index f6dfd71a..7c7f8378 100644 --- a/daemon/core/gui/coreclient.py +++ b/daemon/core/gui/coreclient.py @@ -446,7 +446,7 @@ class CoreClient: master = parent_frame self.app.after(0, show_grpc_error, e, master, self.app) - def set_up(self): + def setup(self): """ Query sessions, if there exist any, prompt whether to join one """ @@ -480,7 +480,7 @@ class CoreClient: x.node_type: set(x.services) for x in response.defaults } except grpc.RpcError as e: - self.app.after(0, show_grpc_error, e, self.app, self.app) + show_grpc_error(e, self.app, self.app) self.app.close() def edit_node(self, core_node: core_pb2.Node):