| 530 | } |
| 531 | |
| 532 | void MapTree::OnChangeOutlineColor(wxCommandEvent& event) |
| 533 | { |
| 534 | wxString map_name = map_titles[new_order[select_id]]; |
| 535 | BackgroundMapLayer* ml = GetMapLayer(map_name); |
| 536 | if (ml) { |
| 537 | wxColour clr; |
| 538 | clr = wxGetColourFromUser(this, ml->GetPenColour()); |
| 539 | ml->SetPenColour(clr); |
| 540 | Refresh(); |
| 541 | canvas->RedrawMap(); |
| 542 | } |
| 543 | } |
| 544 | |
| 545 | void MapTree::OnChangePointRadius(wxCommandEvent& event) |
| 546 | { |
nothing calls this directly
no test coverage detected