]> git.saurik.com Git - wxWidgets.git/commitdiff
reformat
authorRobin Dunn <robin@alldunn.com>
Fri, 20 Apr 2001 00:37:23 +0000 (00:37 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 20 Apr 2001 00:37:23 +0000 (00:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9805 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wxPython/lib/colourselect.py

index 17b86199f7dfd336053e14cfb78db0d12e6da876..8728b84fc8d76516deab3f33a4a62e20c52fa16e 100644 (file)
@@ -5,7 +5,7 @@
 #
 # Author:       Lorne White, Lorne.White@telusplanet.net
 #
-# Created:         Feb 25, 2001
+# Created:      Feb 25, 2001
 # Licence:      wxWindows license
 #----------------------------------------------------------------------------
 
@@ -21,11 +21,11 @@ class ColourSelect:
         self.win = parent
         if size is None:
             size = wxSize(20, 20)
-        
+
         mID = NewId()
         self.b = b = wxButton(parent, mID, "", position, size)
         EVT_BUTTON(parent, mID, self.OnClick)
-        
+
         self.set_colour_val = set_colour = wxColor(bcolour[0], bcolour[1], bcolour[2])
         b.SetBackgroundColour(set_colour)
         b.SetForegroundColour(wxWHITE)
@@ -33,10 +33,10 @@ class ColourSelect:
 
     def SetColour(self, bcolour):
         self.b.SetBackgroundColour(bcolour)
-        
+
     def GetColour(self):
         return self.set_colour
-    
+
     def OnClick(self, event):
         data = wxColourData()
         data.SetChooseFull(true)
@@ -44,7 +44,12 @@ class ColourSelect:
         dlg = wxColourDialog(self.win, data)
         if dlg.ShowModal() == wxID_OK:
             data = dlg.GetColourData()
-            self.set_colour = set = data.GetColour().Get()            
+            self.set_colour = set = data.GetColour().Get()
             self.set_colour_val = bcolour = wxColour(set[0],set[1],set[2])
             self.b.SetBackgroundColour(bcolour)
         dlg.Destroy()
+
+
+
+
+