Changeset 1889


Ignore:
Timestamp:
08/23/10 16:09:23 (14 years ago)
Author:
Kana Sugimoto
Message:

New Development: No

JIRA Issue: Yes (CAS-1801)

Ready for Test: Yes

Interface Changes: No

Test Programs:

Put in Release Notes: No

Module(s): asap plotter

Description: an osx gui handling


File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/notationwindow.py

    r1888 r1889  
    313313        textbox = Tk.Text(master=parent,background='white',
    314314                          height=2,width=20,cursor="xterm",
    315                           padx=2,pady=2,undo=True,maxundo=10)
     315                          padx=2,pady=2,undo=True,maxundo=10,
     316                          relief='sunken',borderwidth=3)
    316317        return textbox
    317318
     
    449450                                 height=self.textwin.winfo_height())
    450451            (w,h) = self.textwin.minsize()
     452        self.textwin.geometry("%sx%s+%s+%s"%(w,h,xpix,ypix))
    451453        self.textwin.lift()
    452         self.textwin.geometry("%sx%s+%s+%s"%(w,h,xpix,ypix))
    453454
    454455    def close_textwindow(self):
Note: See TracChangeset for help on using the changeset viewer.