Skip to content
Snippets Groups Projects
Commit ef7c7136 authored by Paul McCarthy's avatar Paul McCarthy
Browse files

Changed status logging. Limit max size of texteditdialog

parent d2bbd784
No related branches found
No related tags found
No related merge requests found
......@@ -449,6 +449,7 @@ class TextEditDialog(wx.Dialog):
# set the min size of the text
# ctrl so it can fit a few lines
self.__textEdit.SetMinSize((-1, 120))
self.__textEdit.SetMaxSize((600, -1))
self.__ok = (-1, -1)
self.__copy = (-1, -1)
......
......@@ -131,8 +131,6 @@ def reportError(title, msg, err):
from .platform import platform as fslplatform
from . import async
log.error('{}: {}'.format(title, msg, exc_info=True))
if fslplatform.haveGui:
msg = '{}\n\nDetails: {}'.format(msg, str(err))
......@@ -149,7 +147,9 @@ def reportIfError(title, msg, raiseError=True):
yield
except Exception as e:
log.error('{}: {}'.format(title, msg), exc_info=True)
reportError(title, msg, e)
if raiseError:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment