From 24ede5653d7293524068411aa8ff9a5d31c90475 Mon Sep 17 00:00:00 2001 From: miruka Date: Thu, 21 May 2020 14:20:13 -0400 Subject: [PATCH] Hide popups for annoying socket.gaierror Workaround until I can figure out how to catch it --- src/gui/Window.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/Window.qml b/src/gui/Window.qml index b44421bf..9a4c7d7b 100644 --- a/src/gui/Window.qml +++ b/src/gui/Window.qml @@ -42,7 +42,7 @@ ApplicationWindow { property var theme: null - property var hideErrorTypes: new Set() + property var hideErrorTypes: new Set(["socket.gaierror"]) readonly property var visibleMenus: ({}) readonly property var visiblePopups: ({})