Changeset 1914


Ignore:
Timestamp:
08/30/10 13:05:18 (14 years ago)
Author:
Kana Sugimoto
Message:

New Development: No

JIRA Issue: Yes (CAS-1822)

Ready for Test: Yes

Interface Changes: No

What Interface Changed:

Test Programs:

Put in Release Notes: No

Module(s): asapplotter and sdplot

Description: a bit fix for button appearance on osx


File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/casatoolbar.py

    r1913 r1914  
    214214                                   text='- page',
    215215                                   command=self.prev_page)
    216         self.bPrev.config(padx=5)
    217216        self.bNext=self._NewButton(master=self,
    218217                                   text='+ page',
    219218                                   command=self.next_page)
    220         self.bNext.config(padx=5)
     219        if os.uname()[0] != 'Darwin':
     220            self.bPrev.config(padx=5)
     221            self.bNext.config(padx=5)
    221222        self.bQuit=self._NewButton(master=self,
    222223                                   text='Quit',
Note: See TracChangeset for help on using the changeset viewer.