X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=blobdiff_plain;f=KeyFrame.py;h=9856a4f4fffaa28efbe62efa241694344fe41d93;hp=ffa625b36a3e6c9a05975089477b121de38d3e7a;hb=12a4cd82d7022c1d640bf8c0eefdd692961cda3a;hpb=ea81472844df73875a9b2ba9122d487361fd88ac diff --git a/KeyFrame.py b/KeyFrame.py index ffa625b..9856a4f 100755 --- a/KeyFrame.py +++ b/KeyFrame.py @@ -66,12 +66,12 @@ class AlcOptFrame(wx.Dialog): self.listcle.append(cle) - self.button_val = wx.Button(self,wx.ID_APPLY) + self.button_val = wx.Button(self, wx.ID_OK) for button in self.listbutton : self.Bind(wx.EVT_BUTTON,self.OnShowList,button) - self.Bind(wx.EVT_BUTTON, self.OnApply, self.button_val) + #self.Bind(wx.EVT_BUTTON, self.OnApply, self.button_val) self.dico=self.parent.parent.parent.lexique#'dictionnaires/lexique.txt') @@ -131,13 +131,6 @@ class AlcOptFrame(wx.Dialog): ListViewFrame.CenterOnParent() val=ListViewFrame.ShowModal() - def OnApply(self,evt): - for i in range(0,len(self.listlabel)): - self.keys[self.listcle[i]] = self.listspin[i].GetValue() - DoConf().makeoptions(['KEY'], [self.keys], outfile = self.parent.parent.ira.ConfigPath['key']) - self.Destroy() - - class ListView(wx.Dialog): def __init__(self, parent): wx.Dialog.__init__(self, parent, size=wx.Size(200, 400),style=wx.DEFAULT_DIALOG_STYLE)