MGR: Set default background of Simple Prefs dialog to white.

This commit is contained in:
Charlie Fenton 2015-03-31 02:17:45 -07:00
parent 638503e1ee
commit 2a8a22b77b
2 changed files with 2 additions and 2 deletions

View File

@ -410,7 +410,7 @@ bool CSkinSimple::InitializeDelayedValidation() {
wxT("background"), (const char**)background_image_xpm, wxT("211:211:211")
);
m_DialogBackgroundImage.SetDefaults(
wxT("dialog background"), (const char**)dialog_background_image_xpm, wxT("211:211:211")
wxT("dialog background"), (const char**)dialog_background_image_xpm, wxT("255:255:255")
);
m_ProjectImage.SetDefaults(
wxT("project"), (const char**)project_image_xpm

View File

@ -18,7 +18,7 @@
static const char *dialog_background_image_xpm[] = {
/* columns rows colors chars-per-pixel */
"1 1 1 1",
" c #D3D3D3",
" c #FFFFFF",
/* pixels */
" "
};