Honor custom labels for buttons with standard IDs

This commit is contained in:
tophf 2013-08-01 20:42:01 -07:00 committed by Thomas Goyne
parent 52d67accb4
commit 74fbe22afe
1 changed files with 8 additions and 8 deletions

View File

@ -516,15 +516,15 @@ namespace Automation4 {
return button;
};
if (boost::count(buttons | boost::adaptors::map_keys, -1) == 0) {
for (size_t i = 0; i < buttons.size(); ++i)
bs->AddButton(make_button(buttons[i].first, i, wxEmptyString));
bool only_wxID_buttons = true;
for (size_t i = 0; i < buttons.size(); ++i) {
bs->AddButton(make_button(buttons[i].first, i, buttons[i].second));
if (buttons[i].first == -1)
only_wxID_buttons = false;
}
if (only_wxID_buttons)
bs->Realize();
}
else {
for (size_t i = 0; i < buttons.size(); ++i)
bs->Add(make_button(buttons[i].first, i, buttons[i].second));
}
auto ms = new wxBoxSizer(wxVERTICAL);
ms->Add(s, 0, wxBOTTOM, 5);