User forums > Nightly builds

The 01 March 2020 build (11973) is out.

<< < (5/5)

BlueHazzard:
Looking into the code this seems to be the default behavior

--- Code: ---void EditorConfigurationDlg::OnSetDefaultColour(wxCommandEvent& event)
{
    wxWindow *button = nullptr;
    if (event.GetId() == XRCID("btnForeSetDefault"))
        button = FindWindowById(XRCID("btnColoursFore"));
    else if (event.GetId() == XRCID("btnBackSetDefault"))
        button = FindWindowById(XRCID("btnColoursBack"));
    if (!button)
        return;
    button->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE));
    button->SetLabel(_("\"Default\""));
    WriteColours();
}

--- End code ---

Navigation

[0] Message Index

[*] Previous page

Go to full version