From c3f1824a84f42629faf2fb7cc3badd53be56d5de Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Tue, 16 Jun 2020 21:06:42 +0300 Subject: [PATCH] Rename charge export button --- gui/esiFittings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/esiFittings.py b/gui/esiFittings.py index 4bec64e97..649300d1c 100644 --- a/gui/esiFittings.py +++ b/gui/esiFittings.py @@ -225,7 +225,7 @@ class ExportToEve(AuxiliaryFrame): mainSizer.Add(hSizer, 0, wx.EXPAND, 5) - self.exportChargesCb = wx.CheckBox(self, wx.ID_ANY, 'Export Charges', wx.DefaultPosition, wx.DefaultSize, 0) + self.exportChargesCb = wx.CheckBox(self, wx.ID_ANY, 'Export Loaded Charges', wx.DefaultPosition, wx.DefaultSize, 0) self.exportChargesCb.SetValue(EsiSettings.getInstance().get('exportCharges')) self.exportChargesCb.Bind(wx.EVT_CHECKBOX, self.OnChargeExportChange) mainSizer.Add(self.exportChargesCb, 0, 0, 5)