From ec3d066a59a84ec786c1ae47acb20ad40c5a25c5 Mon Sep 17 00:00:00 2001 From: pinaise Date: Sat, 7 Jan 2012 18:29:29 +0100 Subject: [PATCH] Resizing the options dialog is now possible, this will allow you to check the paths for slicecommand and sliceoptscommand --- pronterface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pronterface.py b/pronterface.py index 9b696cd..1c6914e 100755 --- a/pronterface.py +++ b/pronterface.py @@ -1615,7 +1615,7 @@ class macroed(wx.Dialog): class options(wx.Dialog): """Options editor""" def __init__(self,pronterface): - wx.Dialog.__init__(self, None, title=_("Edit settings")) + wx.Dialog.__init__(self, None, title=_("Edit settings"), style=wx.DEFAULT_DIALOG_STYLE|wx.RESIZE_BORDER) topsizer=wx.BoxSizer(wx.VERTICAL) vbox=wx.StaticBoxSizer(wx.StaticBox(self, label=_("Defaults")) ,wx.VERTICAL) topsizer.Add(vbox,1,wx.ALL+wx.EXPAND)