From 873a62e3f0685625e2615cb67091cae77caf37e9 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Wed, 2 Oct 2019 22:08:37 +0300 Subject: [PATCH] Make error dialog window like any other auxiliary window - do not keep it on top --- gui/errorDialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/errorDialog.py b/gui/errorDialog.py index d349e2e76..fbe455151 100644 --- a/gui/errorDialog.py +++ b/gui/errorDialog.py @@ -67,7 +67,7 @@ class ErrorFrame(AuxiliaryFrame): def __init__(self, parent=None, error_title='Error!'): super().__init__( parent, id=wx.ID_ANY, title="pyfa error", pos=wx.DefaultPosition, - size=wx.Size(500, 600), style=wx.STAY_ON_TOP) + size=wx.Size(500, 600)) from eos.config import gamedata_version, gamedata_date