mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-04 23:35:31 +00:00
Write flipBoard boolean to JSON.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/19852
This commit is contained in:
parent
4e08afd517
commit
c8f56f24a8
@ -47,7 +47,8 @@ nlohmann::json PARAM_LAYER_PRESET::presetsToJson()
|
||||
{
|
||||
nlohmann::json js = {
|
||||
{ "name", preset.name },
|
||||
{ "activeLayer", preset.activeLayer }
|
||||
{ "activeLayer", preset.activeLayer },
|
||||
{ "flipBoard", preset.flipBoard }
|
||||
};
|
||||
|
||||
nlohmann::json layers = nlohmann::json::array();
|
||||
@ -87,8 +88,12 @@ void PARAM_LAYER_PRESET::jsonToPresets( const nlohmann::json& aJson )
|
||||
{
|
||||
LAYER_PRESET p( preset.at( "name" ).get<wxString>() );
|
||||
|
||||
if( preset.contains( "activeLayer" ) &&
|
||||
preset.at( "activeLayer" ).is_number_integer() )
|
||||
if( preset.contains( "flipBoard" ) && preset.at( "flipBoard" ).is_boolean() )
|
||||
{
|
||||
p.flipBoard = preset.at( "flipBoard" ).get<bool>();
|
||||
}
|
||||
|
||||
if( preset.contains( "activeLayer" ) && preset.at( "activeLayer" ).is_number_integer() )
|
||||
{
|
||||
int active = preset.at( "activeLayer" ).get<int>();
|
||||
|
||||
@ -112,8 +117,7 @@ void PARAM_LAYER_PRESET::jsonToPresets( const nlohmann::json& aJson )
|
||||
}
|
||||
}
|
||||
|
||||
if( preset.contains( "renderLayers" )
|
||||
&& preset.at( "renderLayers" ).is_array() )
|
||||
if( preset.contains( "renderLayers" ) && preset.at( "renderLayers" ).is_array() )
|
||||
{
|
||||
p.renderLayers.reset();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user