Skip to content

Commit

Permalink
changing bg back to white
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanmtaylor committed Oct 16, 2011
1 parent 50e143a commit 1d1ba17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GUIFrame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"));
Expand Down

0 comments on commit 1d1ba17

Please sign in to comment.