Skip to content

Commit

Permalink
Missed a place changing ...CopyMathAs to ...CopyAs
Browse files Browse the repository at this point in the history
  • Loading branch information
NSoiffer committed May 6, 2024
1 parent 4edb8a3 commit 90c2515
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions addon/globalPlugins/MathCAT/MathCATgui.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ def __init__(self, parent):

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

bSizerCopyMathAs = wx.BoxSizer(wx.HORIZONTAL)
bSizerCopyAs = wx.BoxSizer(wx.HORIZONTAL)

self.m_staticTextCopyMathAs = wx.StaticText(
self.m_panelNavigation,
Expand All @@ -534,10 +534,10 @@ def __init__(self, parent):
)
self.m_staticTextCopyMathAs.Wrap(-1)

bSizerCopyMathAs.Add(self.m_staticTextCopyMathAs, 0, wx.ALL, 5)
bSizerCopyAs.Add(self.m_staticTextCopyMathAs, 0, wx.ALL, 5)

# Translators: options for copy math as.
m_choiceCopyMathAsChoices = [
m_choiceCopyAsChoices = [
# Translators: options for Copy expression to clipboard as -- "MathML"
_("MathML"),
# Translators: options for Copy expression to clipboard as -- "LaTeX"
Expand All @@ -550,13 +550,13 @@ def __init__(self, parent):
wx.ID_ANY,
wx.DefaultPosition,
wx.DefaultSize,
m_choiceCopyMathAsChoices,
m_choiceCopyAsChoices,
0,
)
self.m_choiceCopyAs.SetSelection(0)
bSizerCopyMathAs.Add(self.m_choiceCopyAs, 0, wx.ALL, 5)
bSizerCopyAs.Add(self.m_choiceCopyAs, 0, wx.ALL, 5)

bSizerNavigation.Add(bSizerCopyMathAs, 1, wx.EXPAND, 5)
bSizerNavigation.Add(bSizerCopyAs, 1, wx.EXPAND, 5)

self.m_panelNavigation.SetSizer(bSizerNavigation)
self.m_panelNavigation.Layout()
Expand Down

0 comments on commit 90c2515

Please sign in to comment.