Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS will be completely phased out by mid-2025. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 142651a2 authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

Pull request #144: GUI: enable input for hybrid stategy parameters only for...

Pull request #144: GUI: enable input for hybrid stategy parameters only for hybrid vehicles in engineering mode

Merge in VECTO/vecto-dev from VECTO/mq_vecto-dev:bugfix/VECTO-1516-gui-pev-vehicle-disable-hybrid-parameters to develop

* commit '473ab685':
  GUI: enable input for hybrid stategy parameters only for hybrid vehicles in engineering mode
parents 4dab6594 473ab685
No related branches found
No related tags found
No related merge requests found
......@@ -1011,7 +1011,6 @@ Public Class VectoJobForm
pnHybridStrategy.Enabled = False
lblESSUtilityFactorDriving.Enabled = false
tbESSUtilityFactorDriving.Enabled = false
pnHybridStrategy.Enabled = Not Cfg.DeclMode
Select Case JobType
Case VectoSimulationJobType.ConventionalVehicle
gbElectricAux.Enabled = False
......@@ -1024,10 +1023,10 @@ Public Class VectoJobForm
TabPgADAS.Enabled = False
tpAuxiliaries.Enabled = False
pnShiftParams.Enabled = False
pnHybridStrategy.Enabled = False
Case VectoSimulationJobType.ParallelHybridVehicle
' empty line - do not fall-through
pnHybridStrategy.Enabled = True
pnHybridStrategy.Enabled = Not Cfg.DeclMode
Case VectoSimulationJobType.BatteryElectricVehicle
pnEngine.Enabled = False
pnGearbox.Enabled = True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment