def on_ok(self, e):
self.session_file_path = self.session_picker.GetPath()
if not self.session_file_path:
wx.MessageBox(_("Please specify the Current Fest file."), "No Fest File", wx.OK | wx.ICON_ERROR, self)
return
self.config[Config.PROJECTOR_SCREEN] = self.screens_combobox.GetSelection()
self.config[Config.FILENAME_RE] = self.filename_re.GetValue()
self.config[Config.BG_TRACKS_DIR] = self.bg_tracks.GetPath()
self.config[Config.BG_ZAD_PATH] = self.bg_zad.GetPath()
self.config[Config.FILES_DIRS] = [picker.GetPath() for picker in self.dir_pickers]
self.EndModal(e.Id)
评论列表
文章目录