Skip to content

Commit 90c2515

Browse files
committed
Missed a place changing ...CopyMathAs to ...CopyAs
1 parent 4edb8a3 commit 90c2515

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

addon/globalPlugins/MathCAT/MathCATgui.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ def __init__(self, parent):
521521

522522
bSizerNavigation.Add(bSizerNavigationZoom, 1, wx.EXPAND, 5)
523523

524-
bSizerCopyMathAs = wx.BoxSizer(wx.HORIZONTAL)
524+
bSizerCopyAs = wx.BoxSizer(wx.HORIZONTAL)
525525

526526
self.m_staticTextCopyMathAs = wx.StaticText(
527527
self.m_panelNavigation,
@@ -534,10 +534,10 @@ def __init__(self, parent):
534534
)
535535
self.m_staticTextCopyMathAs.Wrap(-1)
536536

537-
bSizerCopyMathAs.Add(self.m_staticTextCopyMathAs, 0, wx.ALL, 5)
537+
bSizerCopyAs.Add(self.m_staticTextCopyMathAs, 0, wx.ALL, 5)
538538

539539
# Translators: options for copy math as.
540-
m_choiceCopyMathAsChoices = [
540+
m_choiceCopyAsChoices = [
541541
# Translators: options for Copy expression to clipboard as -- "MathML"
542542
_("MathML"),
543543
# Translators: options for Copy expression to clipboard as -- "LaTeX"
@@ -550,13 +550,13 @@ def __init__(self, parent):
550550
wx.ID_ANY,
551551
wx.DefaultPosition,
552552
wx.DefaultSize,
553-
m_choiceCopyMathAsChoices,
553+
m_choiceCopyAsChoices,
554554
0,
555555
)
556556
self.m_choiceCopyAs.SetSelection(0)
557-
bSizerCopyMathAs.Add(self.m_choiceCopyAs, 0, wx.ALL, 5)
557+
bSizerCopyAs.Add(self.m_choiceCopyAs, 0, wx.ALL, 5)
558558

559-
bSizerNavigation.Add(bSizerCopyMathAs, 1, wx.EXPAND, 5)
559+
bSizerNavigation.Add(bSizerCopyAs, 1, wx.EXPAND, 5)
560560

561561
self.m_panelNavigation.SetSizer(bSizerNavigation)
562562
self.m_panelNavigation.Layout()

0 commit comments

Comments
 (0)