From: <cl...@us...> - 2003-06-21 15:09:46
|
Update of /cvsroot/todo-manager/todo-manager In directory sc8-pr-cvs1:/tmp/cvs-serv20458 Modified Files: ChangeLog.txt interface.py Log Message: Added a scrollbar to the Notes textbox Index: ChangeLog.txt =================================================================== RCS file: /cvsroot/todo-manager/todo-manager/ChangeLog.txt,v retrieving revision 1.43 retrieving revision 1.44 diff -u -d -r1.43 -r1.44 --- ChangeLog.txt 6 May 2003 02:49:30 -0000 1.43 +++ ChangeLog.txt 21 Jun 2003 15:09:43 -0000 1.44 @@ -10,6 +10,7 @@ (thanks, Dennis Benzinger) * Added a script that will update any translation with new translations strings that have been added (i18n/updatepo.py) + * Added a scrollbar to the Note textbox Version 0.70.2 (03/16/2003): * Groups with multilingual characters no longer cause an exception Index: interface.py =================================================================== RCS file: /cvsroot/todo-manager/todo-manager/interface.py,v retrieving revision 1.47 retrieving revision 1.48 diff -u -d -r1.47 -r1.48 --- interface.py 27 Apr 2003 03:44:39 -0000 1.47 +++ interface.py 21 Jun 2003 15:09:43 -0000 1.48 @@ -211,8 +211,14 @@ frame2.grid(row=2, sticky=W) Label(frame, text=_("Notes:")).grid(row=3, sticky=W) - self._notesText = Text(frame, wrap=WORD, width=55, height=5) - self._notesText.grid(row=4, sticky=EW) + frame2 = Frame(frame, bd=0) + self._notesText = Text(frame2, wrap=WORD, width=55, height=5) + scroll = Scrollbar(frame2, command=self._notesText.yview) + self._notesText.config(yscrollcommand=scroll.set) + self._notesText.grid(row=0, sticky=EW) + scroll.grid(row=0, column=1, sticky=NS) + frame2.grid_columnconfigure(0, weight=1) + frame2.grid(row=4, sticky=EW) frame2 = Frame(frame, bd=0) ThinButton(frame2, text=_("Clear Fields"), command=self.OnClearFields).grid( |