mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 00:37:51 -06:00
Set default filament color rgb(242, 117, 78)
Introduce secondary accent color rgb(242, 117, 78)
This commit is contained in:
parent
b85b514bd9
commit
c7dbf848a6
3 changed files with 5 additions and 5 deletions
|
@ -1236,14 +1236,14 @@ void PrintConfigDef::init_fff_params()
|
|||
def->tooltip = L("Default filament color");
|
||||
def->gui_type = ConfigOptionDef::GUIType::color;
|
||||
def->mode = comAdvanced;
|
||||
def->set_default_value(new ConfigOptionStrings{""});
|
||||
def->set_default_value(new ConfigOptionStrings{"#F2754E"});
|
||||
|
||||
def = this->add("filament_colour", coStrings);
|
||||
def->label = L("Color");
|
||||
def->tooltip = L("Only used as a visual help on UI");
|
||||
def->gui_type = ConfigOptionDef::GUIType::color;
|
||||
def->mode = comAdvanced;
|
||||
def->set_default_value(new ConfigOptionStrings{ "#009688" });
|
||||
def->set_default_value(new ConfigOptionStrings{ "#F2754E" });
|
||||
|
||||
//bbs
|
||||
def = this->add("required_nozzle_HRC", coInts);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue