Skip to content

Commit

Permalink
Restore counterweights now that MCP has been fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Nov 19, 2020
1 parent 6a60692 commit d954993
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions TUI/Misc/MCP/StatusWdg.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
import RO.Wdg
import TUI.Models
import SlitheadWdg
import CounterweightWdg


class StatusWdg (Tkinter.Frame):
def __init__(self,
Expand All @@ -35,9 +37,9 @@ def __init__(self,
)
self.gridder.gridWdg("APOGEE Gang", self.apogeeGangWdg)

# self.cwWdgList = CounterweightWdg.CounterweightWdgList(self, helpURL=helpURL)
# for i, wdg in enumerate(self.cwWdgList):
# self.gridder.gridWdg("CW %d" % (i+1,), wdg)
self.cwWdgList = CounterweightWdg.CounterweightWdgList(self, helpURL=helpURL)
for i, wdg in enumerate(self.cwWdgList):
self.gridder.gridWdg("CW %d" % (i+1,), wdg)

self.spSlitWdgList = SlitheadWdg.SlitheadWdgList(self, helpURL=helpURL)
for i, wdg in enumerate(self.spSlitWdgList):
Expand Down

0 comments on commit d954993

Please sign in to comment.