Skip to content

Commit

Permalink
Disable QuickLook S/N plot
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed May 9, 2021
1 parent 40a193f commit 81ffd89
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions TUI/Help/VersionHistory.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@ <h3>Compatibility</h3>
<li>No Windows releases are planned.
</ul>

<h3>1.7.13b0 2021-05-09</h3>

<p>Visible changes:
<ul>
<li> Disabled APOGEE QuickLook plot.
</ul>



<h3>1.7.12 2020-11-30</h3>

<p>Visible changes:
Expand Down
12 changes: 6 additions & 6 deletions TUI/Inst/APOGEEQL/APOGEEQLWdg.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,20 @@ def __init__(self, master, width=40):
row = 0
self.readStatusWdg = ReadStatusWdg.ReadStatusWdg(master=self, helpURL=_HelpURL)
self.readStatusWdg.grid(row=row, column=0, sticky="nw")

sepFrame = Tkinter.Frame(self, bg="gray")
sepFrame.grid(row=row, column=1, padx=2, sticky="ns")

self.expLogWdg = ExposureTableWdg.ExposureTableWdg(master=self, helpURL=_HelpURL)
self.expLogWdg.grid(row=row, column=2, sticky="news")
row += 1

self.statusBar = TUI.Base.Wdg.StatusBar(master=self)
self.statusBar.grid(row=row, column=0, columnspan=3, sticky="ew")
row += 1
self.snrGraphWdg = SNRGraphWdg.SNRGraphWdg(master=self, width=_Width, height=_Height, helpURL=_HelpURL)
self.snrGraphWdg.grid(row=row, column=0, columnspan=3, sticky="news")

# self.snrGraphWdg = SNRGraphWdg.SNRGraphWdg(master=self, width=_Width, height=_Height, helpURL=_HelpURL)
# self.snrGraphWdg.grid(row=row, column=0, columnspan=3, sticky="news")
self.grid_rowconfigure(row, weight=1)
self.grid_columnconfigure(2, weight=1)
row += 1
Expand Down
2 changes: 1 addition & 1 deletion TUI/Version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VersionStr = "1.7.12 2020-11-30"
VersionStr = "1.7.13b0 2021-05-09"
VersionName, VersionDate = VersionStr.split()
ApplicationName = "STUI"

0 comments on commit 81ffd89

Please sign in to comment.