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.py

    r2149 r2170  
    3737        # Simply instantiating this is enough to get a working toolbar.
    3838        self.figmgr = FigureManagerTkAgg(self.canvas, 1, self.window)
    39         self.window.wm_title('ASAP Plotter - Tk')
     39        self._set_window_title('ASAP Plotter - Tk')
    4040
    4141        self.events = {'button_press':None,
     
    8484        """
    8585        self.window.wm_withdraw()
     86
     87    def _set_window_title(self,title):
     88        # Set title to main window title bar
     89        self.window.wm_title(title)
Note: See TracChangeset for help on using the changeset viewer.