diff options
author | akshay-c | 2019-04-09 10:46:06 +0530 |
---|---|---|
committer | akshay-c | 2019-04-09 10:46:06 +0530 |
commit | df1231112f08a66addd444c08839dee87905974d (patch) | |
tree | ba9409f32310c1a2163943e58057e59f15e89474 /ldmicro/schematic.cpp | |
parent | 04220d0ad3d86a996f6163ed16a86d1a71574132 (diff) | |
download | LDmicroQt-df1231112f08a66addd444c08839dee87905974d.tar.gz LDmicroQt-df1231112f08a66addd444c08839dee87905974d.tar.bz2 LDmicroQt-df1231112f08a66addd444c08839dee87905974d.zip |
Drawing Elements and HelpDialog
Diffstat (limited to 'ldmicro/schematic.cpp')
-rw-r--r-- | ldmicro/schematic.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ldmicro/schematic.cpp b/ldmicro/schematic.cpp index b2a61ec..a656183 100644 --- a/ldmicro/schematic.cpp +++ b/ldmicro/schematic.cpp @@ -514,7 +514,7 @@ void EditElementMouseDoubleclick(int x, int y) gy += ScrollYOffset; - /*if(InSimulationMode) { + if(InSimulationMode) { ElemLeaf *l = DisplayMatrix[gx][gy]; if(l && DisplayMatrixWhich[gx][gy] == ELEM_CONTACTS) { char *name = l->d.contacts.name; @@ -522,13 +522,13 @@ void EditElementMouseDoubleclick(int x, int y) SimulationToggleContact(name); } } else if(l && DisplayMatrixWhich[gx][gy] == ELEM_READ_ADC) { - ShowAnalogSliderPopup(l->d.readAdc.name); + // ShowAnalogSliderPopup(l->d.readAdc.name); } } else { if(DisplayMatrix[gx][gy] == Selected) { EditSelectedElement(); } - }*/ + } } //----------------------------------------------------------------------------- |