diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2024-06-30 22:49:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-30 22:49:18 +0200 |
| commit | e52886a64a4e76c3fdc49df95c85655da3c4f7f4 (patch) | |
| tree | 88a4edee630df0947553ced79fb6eb9dc510ccea /lib/gui/warnings.py | |
| parent | 7c06dee44ac7951a5db406eb829100a5bc3e5887 (diff) | |
Various fixes (#3028)
* several thread palette extension fixes
* fix svg tartan when original shape is invalid
* tartan stroke spaces
* style
* fix tartan color substituion at pattern start
* ripple: do not render too small paths
* use less space for params warning headline
* fix clone shape path
* zip export template fix (typo)
* add realistic stitch plan output warning (help tab)
Diffstat (limited to 'lib/gui/warnings.py')
| -rw-r--r-- | lib/gui/warnings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gui/warnings.py b/lib/gui/warnings.py index c8359fc9..18d91532 100644 --- a/lib/gui/warnings.py +++ b/lib/gui/warnings.py @@ -20,7 +20,7 @@ class WarningPanel(wx.Panel): self.warning = wx.StaticText(self) self.warning.SetLabel(_("An error occurred while rendering the stitch plan:")) self.warning.SetForegroundColour(wx.Colour(255, 25, 25)) - self.main_sizer.Add(self.warning, 1, wx.LEFT | wx.BOTTOM | wx.EXPAND, 10) + self.main_sizer.Add(self.warning, 0, wx.LEFT | wx.BOTTOM | wx.EXPAND, 10) tc_style = wx.TE_MULTILINE | wx.TE_READONLY | wx.VSCROLL | wx.TE_RICH2 self.warning_text = wx.TextCtrl(self, size=(300, 300), style=tc_style) |
