projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
accept files in wxHtmlEasyPrinting::{Print,Preview}File, not only URLs
[wxWidgets.git]
/
wxPython
/
wx
/
lib
/
colourdb.py
diff --git
a/wxPython/wx/lib/colourdb.py
b/wxPython/wx/lib/colourdb.py
index 8f14df111bb208c5b162b3ea9280f9d4fe9be108..d44b1ea2f041b332a9f8c5ba6b7aabb17c462338 100644
(file)
--- a/
wxPython/wx/lib/colourdb.py
+++ b/
wxPython/wx/lib/colourdb.py
@@
-664,7
+664,9
@@
def updateColourDB():
import wx
assert wx.GetApp() is not None, "You must have a wx.App object before you can use the colour database."
cl = getColourInfoList()
import wx
assert wx.GetApp() is not None, "You must have a wx.App object before you can use the colour database."
cl = getColourInfoList()
+
for info in cl:
wx.TheColourDatabase.Append(*info)
for info in cl:
wx.TheColourDatabase.Append(*info)
-
+
+ _haveUpdated = True