From 5b2784f418b98fd54d9d0001b3988c3a1b0dd506 Mon Sep 17 00:00:00 2001 From: Fabien Corona Date: Mon, 27 Feb 2023 09:54:14 +0000 Subject: [PATCH] sim - switches: open <-> closed in description --- eeschema/sim/sim_model_switch.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eeschema/sim/sim_model_switch.cpp b/eeschema/sim/sim_model_switch.cpp index 6d13496446..ff1b258915 100644 --- a/eeschema/sim/sim_model_switch.cpp +++ b/eeschema/sim/sim_model_switch.cpp @@ -154,7 +154,7 @@ const std::vector SIM_MODEL_SWITCH::makeSwVParamInfos() paramInfo.unit = "Ω"; paramInfo.category = PARAM::CATEGORY::PRINCIPAL; paramInfo.defaultValue = "1"; - paramInfo.description = "Resistance when open"; + paramInfo.description = "Resistance when closed"; paramInfo.isSpiceInstanceParam = false; paramInfo.spiceModelName = ""; paramInfo.enumValues = {}; @@ -165,7 +165,7 @@ const std::vector SIM_MODEL_SWITCH::makeSwVParamInfos() paramInfo.unit = "Ω"; paramInfo.category = PARAM::CATEGORY::PRINCIPAL; paramInfo.defaultValue = "1e+12"; - paramInfo.description = "Resistance when closed"; + paramInfo.description = "Resistance when open"; paramInfo.isSpiceInstanceParam = false; paramInfo.spiceModelName = ""; paramInfo.enumValues = {}; @@ -218,7 +218,7 @@ const std::vector SIM_MODEL_SWITCH::makeSwIParamInfos() paramInfo.unit = "Ω"; paramInfo.category = PARAM::CATEGORY::PRINCIPAL; paramInfo.defaultValue = "1"; - paramInfo.description = "Resistance when open"; + paramInfo.description = "Resistance when closed"; paramInfo.isSpiceInstanceParam = false; paramInfo.spiceModelName = ""; paramInfo.enumValues = {}; @@ -229,7 +229,7 @@ const std::vector SIM_MODEL_SWITCH::makeSwIParamInfos() paramInfo.unit = "Ω"; paramInfo.category = PARAM::CATEGORY::PRINCIPAL; paramInfo.defaultValue = "1e+12"; - paramInfo.description = "Resistance when closed"; + paramInfo.description = "Resistance when open"; paramInfo.isSpiceInstanceParam = false; paramInfo.spiceModelName = ""; paramInfo.enumValues = {};