2007-03-21 Zsolt Foldvari <zfoldvar@users.sourceforge.net>
* src/MarkupText.py (MarkupBuffer.set_text): convert unicode to byte string for parseString. * src/Editors/_EditAddress.py: * src/Editors/_EditLdsOrd.py: * src/Editors/_EditSourceRef.py: * src/Editors/_EditEventRef.py: * src/Editors/_EditMedia.py: * src/Editors/_EditName.py: * src/Editors/_EditEvent.py: attach ValidatableMaskedEntry into table with FILL=False yoption for having the validation error tip at right position. svn: r8309
This commit is contained in:
		@@ -81,9 +81,9 @@ class EditAddress(EditSecondary):
 | 
			
		||||
 | 
			
		||||
    def _setup_fields(self):
 | 
			
		||||
        table = self.top.get_widget('table26')
 | 
			
		||||
	date_entry = ValidatableMaskedEntry(str)
 | 
			
		||||
        date_entry = ValidatableMaskedEntry(str)
 | 
			
		||||
        date_entry.show()
 | 
			
		||||
        table.attach(date_entry, 1, 6, 0, 1)
 | 
			
		||||
        table.attach(date_entry, 1, 6, 0, 1, yoptions=gtk.EXPAND)
 | 
			
		||||
 | 
			
		||||
        self.addr_start = MonitoredDate(
 | 
			
		||||
            date_entry,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user