2006-08-14 Don Allingham <don@gramps-project.org>

* src/DispalyTabs/_NoteTab.py: don't add text window using viewport (#344)
	* src/DispalyTabs/_TextTab.py: don't add text window using viewport (#344)



svn: r7175
This commit is contained in:
Don Allingham 2006-08-14 13:13:45 +00:00
parent 669ecca632
commit d73c448bb2
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2006-08-14 Don Allingham <don@gramps-project.org>
* src/DispalyTabs/_NoteTab.py: don't add text window using viewport (#344)
* src/DispalyTabs/_TextTab.py: don't add text window using viewport (#344)
2006-08-12 Brian Matherly <brian@gramps-project.org>
* src/ManagedWindow.py: add present() to force parent focus (#0000342)

View File

@ -92,7 +92,7 @@ class NoteTab(GrampsTab):
scroll = gtk.ScrolledWindow()
scroll.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
scroll.add_with_viewport(self.text)
scroll.add(self.text)
scroll.connect('focus-out-event', self.update)
vbox.pack_start(scroll, True)

View File

@ -78,7 +78,7 @@ class TextTab(GrampsTab):
scroll = gtk.ScrolledWindow()
scroll.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
scroll.add_with_viewport(self.text_view)
scroll.add(self.text_view)
scroll.connect('focus-out-event', self.update)
vbox.pack_start(scroll, True)