Ignore:
Timestamp:
05/17/11 18:14:58 (13 years ago)
Author:
Kana Sugimoto
Message:

New Development: No

JIRA Issue: No (minor fixes and improvements)

Ready for Test: Yes

Interface Changes: No

What Interface Changed:

Test Programs: interactive testing

Put in Release Notes: No

Module(s): asapplotter, asaplotbase, flagplotter, sdplot, and sdflag

Description:

Misc bug fixes and minor modifications:
+ fixed bug in customgui_base (scantable class referenced but not imported)
+ minor improvement of toolbar message in customgui_tkagg
+ added a new method _set_window_title(string title) to asaplotgui_qt4 and asaplotgui modules

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/asaplotgui_qt4.py

    r2152 r2170  
    3434        self.figmgr = FigureManagerQTAgg(self.canvas, 1)
    3535        self.window = self.figmgr.window
    36         self.window.setWindowTitle('ASAP Plotter - Qt4')
     36        self._set_window_title('ASAP Plotter - Qt4')
    3737        # register this plot to matplotlib
    3838        _pylab_helpers.Gcf.set_active(self.figmgr)
     
    100100        """
    101101        self.window.hide()
     102
     103    def _set_window_title(self,title):
     104        # Set title to main window title bar
     105        self.window.setWindowTitle(title)
Note: See TracChangeset for help on using the changeset viewer.