Added printfs for code debugging on OSX

This commit is contained in:
YuSanka 2018-09-10 12:17:41 +02:00
parent a59a84f237
commit e914a719f8
3 changed files with 8 additions and 6 deletions

View file

@ -1232,11 +1232,11 @@ void enable_action_buttons(bool enable)
return;
// Update background colour for buttons
const wxColour bgrd_color = enable ? wxColour(255, 96, 0) : wxColour(204, 204, 204);
// const wxColour bgrd_color = enable ? wxColour(255, 96, 0) : wxColour(204, 204, 204);
for (auto btn : g_buttons) {
btn->Enable(enable);
btn->SetBackgroundColour(bgrd_color);
// btn->SetBackgroundColour(bgrd_color);
}
}