#pragma hdrstop
#endif
-#if wxUSE_COLOURDLG
+#if wxUSE_COLOURDLG && !defined(__WXGTK20__)
#ifndef WX_PRECOMP
#include "wx/utils.h"
for (i = 0; i < WXSIZEOF(customColours); i++)
{
- customColours[i] = colourData.GetCustomColour(i);
+ wxColour c = colourData.GetCustomColour(i);
+ if (c.Ok())
+ customColours[i] = colourData.GetCustomColour(i);
+ else
+ customColours[i] = wxColour(255, 255, 255);
}
wxColour curr = colourData.GetColour();
PaintCustomColour(dc);
}
-#endif // wxUSE_COLOURDLG
+#endif // wxUSE_COLOURDLG && !defined(__WXGTK20__)