Author: reinhard Date: 2010-10-28 13:52:29 -0500 (Thu, 28 Oct 2010) New Revision: 10220
Modified: trunk/gnue-forms/ trunk/gnue-forms/src/uidrivers/wx/widgets/button.py trunk/gnue-forms/src/uidrivers/wx/widgets/entry.py Log: Avoid exception if kill_focus is called without previous call to set_foucs. Property changes on: trunk/gnue-forms ___________________________________________________________________ Name: bzr:revision-info - timestamp: 2010-10-20 22:20:48.809000015 +0200 committer: Reinhard Müller <[email protected]> properties: branch-nick: forms + timestamp: 2010-10-27 23:12:56.453000069 +0200 committer: Reinhard Müller <[email protected]> properties: branch-nick: forms Name: bzr:file-ids - src/GFObjects/GFBlock.py 1...@3a364389-8fce-0310-8f11-cc363fde16c7:trunk%2Fgnue-forms:src%2FGFObjects%2FGFBlock.py src/GFObjects/GFField.py 1...@3a364389-8fce-0310-8f11-cc363fde16c7:trunk%2Fgnue-forms:src%2FGFObjects%2FGFField.py + src/uidrivers/wx/widgets/button.py 10...@3a364389-8fce-0310-8f11-cc363fde16c7:trunk%2Fgnue-forms:src%2Fuidrivers%2Fwx%2Fwidgets%2Fbutton.py src/uidrivers/wx/widgets/entry.py 10...@3a364389-8fce-0310-8f11-cc363fde16c7:trunk%2Fgnue-forms:src%2Fuidrivers%2Fwx%2Fwidgets%2Fentry.py Name: bzr:revision-id:v4 - 3116 [email protected] 3117 [email protected] 3118 [email protected] 3119 [email protected] 3120 [email protected] 3121 [email protected] 3122 [email protected] 3123 [email protected] 3124 [email protected] 3125 [email protected] 3126 [email protected] 3127 [email protected] 3128 [email protected] 3129 [email protected] 3130 [email protected] 3131 [email protected] 3132 [email protected] 3133 [email protected] 3134 [email protected] 3135 [email protected] 3136 [email protected] 3137 [email protected] + 3116 [email protected] 3117 [email protected] 3118 [email protected] 3119 [email protected] 3120 [email protected] 3121 [email protected] 3122 [email protected] 3123 [email protected] 3124 [email protected] 3125 [email protected] 3126 [email protected] 3127 [email protected] 3128 [email protected] 3129 [email protected] 3130 [email protected] 3131 [email protected] 3132 [email protected] 3133 [email protected] 3134 [email protected] 3135 [email protected] 3136 [email protected] 3137 [email protected] 3138 [email protected] Name: bzr:text-parents - src/GFObjects/GFField.py [email protected] + src/uidrivers/wx/widgets/button.py svn-v3-single1-dHJ1bmsvZ251ZS1mb3Jtcw..:3a364389-8fce-0310-8f11-cc363fde16c7:trunk%2Fgnue-forms:10116 src/uidrivers/wx/widgets/entry.py [email protected] Modified: trunk/gnue-forms/src/uidrivers/wx/widgets/button.py =================================================================== --- trunk/gnue-forms/src/uidrivers/wx/widgets/button.py 2010-10-28 18:52:06 UTC (rev 10219) +++ trunk/gnue-forms/src/uidrivers/wx/widgets/button.py 2010-10-28 18:52:29 UTC (rev 10220) @@ -74,6 +74,8 @@ owner.add_widgets(self, spacer) + self.__old_background = None + return self.widget @@ -155,7 +157,8 @@ # Change background color of widget if requested. if gConfigForms('focus_color'): - widget.SetBackgroundColour(self.__old_background) + if self.__old_background is not None: + widget.SetBackgroundColour(self.__old_background) # ------------------------------------------------------------------------- Modified: trunk/gnue-forms/src/uidrivers/wx/widgets/entry.py =================================================================== --- trunk/gnue-forms/src/uidrivers/wx/widgets/entry.py 2010-10-28 18:52:06 UTC (rev 10219) +++ trunk/gnue-forms/src/uidrivers/wx/widgets/entry.py 2010-10-28 18:52:29 UTC (rev 10220) @@ -72,6 +72,8 @@ self.__current_row = None self.__current_row_color_save = None + self.__old_background = None + # We return the entry object here, since we will bind events to it # later return self.widget @@ -306,7 +308,8 @@ # Change background color of widget if requested. if gConfigForms('focus_color'): - widget.SetBackgroundColour(self.__old_background) + if self.__old_background is not None: + widget.SetBackgroundColour(self.__old_background) # ------------------------------------------------------------------------- _______________________________________________ commit-gnue mailing list [email protected] http://lists.gnu.org/mailman/listinfo/commit-gnue
