Added code to colorized of axes names in manipulation panel (temporarily commented)
Related to (#3053)
This commit is contained in:
parent
70ef0f25ef
commit
db6c501b4d
@ -243,11 +243,13 @@ ObjectManipulation::ObjectManipulation(wxWindow* parent) :
|
||||
|
||||
// Add Axes labels with icons
|
||||
static const char axes[] = { 'X', 'Y', 'Z' };
|
||||
// std::vector<wxString> axes_color = {"#990000", "#009900","#000099"};
|
||||
for (size_t axis_idx = 0; axis_idx < sizeof(axes); axis_idx++) {
|
||||
const char label = axes[axis_idx];
|
||||
|
||||
wxStaticText* axis_name = new wxStaticText(m_parent, wxID_ANY, wxString(label));
|
||||
set_font_and_background_style(axis_name, wxGetApp().bold_font());
|
||||
// axis_name->SetForegroundColour(wxColour(axes_color[axis_idx]));
|
||||
|
||||
sizer = new wxBoxSizer(wxHORIZONTAL);
|
||||
// Under OSX we use font, smaller than default font, so
|
||||
|
Loading…
Reference in New Issue
Block a user