Changes in / [886d2f2c:0ba0774] in sasview
- Location:
- src/sas/qtgui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/DataExplorer.py
r253e7170 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.