Changeset edbd4b6 in sasview
- Timestamp:
- Dec 14, 2016 5:33:50 AM (8 years ago)
- Branches:
- ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- fca1f50
- Parents:
- c3b2327
- Location:
- src/sas/qtgui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/DataExplorer.py
r27313b7 redbd4b6 384 384 orig_text = self.cbgraph.currentText() 385 385 self.cbgraph.clear() 386 graph_titles = []387 386 graph_titles= ["Graph"+str(graph) for graph in graph_list] 388 387 … … 391 390 if ind > 0: 392 391 self.cbgraph.setCurrentIndex(ind) 393 pass394 392 395 393 def newPlot(self): -
src/sas/qtgui/WindowTitle.py
r27313b7 redbd4b6 1 """ 2 Allows users to change the title of the current graph 3 from "Graph_n" to any ASCII text. 4 """ 1 5 from PyQt4 import QtGui 2 3 import sas.sasview4 6 5 7 from sas.qtgui.UI.WindowTitleUI import Ui_WindowTitle … … 13 15 14 16 def title(self): 17 """ Return the new title """ 15 18 return self.txtTitle.text() 16 19
Note: See TracChangeset
for help on using the changeset viewer.