From 1d1ba174800cbcea07f559203b5287faab9be293 Mon Sep 17 00:00:00 2001 From: "Dylan M. Taylor" Date: Sun, 16 Oct 2011 00:17:20 -0400 Subject: [PATCH] changing bg back to white --- GUIFrame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GUIFrame.cpp b/GUIFrame.cpp index d01663a..ed6e300 100644 --- a/GUIFrame.cpp +++ b/GUIFrame.cpp @@ -220,7 +220,7 @@ GUIFrame::GUIFrame(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSiz #endif //set what colors to render the STF files renderingForegroundColor = new wxColor(0,0,0); //black - renderingBackgroundColor = new wxColor(155,155,0); //yellow + renderingBackgroundColor = new wxColor(255,255,255); //white printf("fg color: %d,%d,%d\n", (int)renderingForegroundColor->Red(), (int)renderingForegroundColor->Green(), (int)renderingForegroundColor->Blue()); printf("bg color: %d,%d,%d\n", (int)renderingBackgroundColor->Red(), (int)renderingBackgroundColor->Green(), (int)renderingBackgroundColor->Blue()); // colorDialog->SetTitle(_("Select A Color"));