#4070 closed defect (fixed)
OMEdit Options dialog messed up
| Reported by: | Rüdiger Franke | Owned by: | Adeel Asghar |
|---|---|---|---|
| Priority: | high | Milestone: | |
| Component: | OMEdit | Version: | v1.11.0 |
| Keywords: | Cc: | Martin Sjölund |
Description (last modified by )
The OMEdit Options dialog shows Plotting options under Plotting and Figaro, Figaro under Debugger, ..., FMI under TLM.
Moreover: an FMI Platform selection "None" will be lost upon restart of OMEdit and replaced with the default "Static".
Change History (5)
comment:1 by , 9 years ago
| Description: | modified (diff) |
|---|
comment:2 by , 9 years ago
| Cc: | added |
|---|---|
| Status: | new → accepted |
comment:3 by , 9 years ago
None is important if only cross compilation targets are needed (the check boxes below the selector). This is why it should be kept.
Note:
See TracTickets
for help on using tickets.

The Options dialog pages sequence is fixed in 2c0eb7f/OMEdit.
For the option
Nonewe have this in the code,QStringList platforms; QString linking = mpFMIPage->getLinkingComboBox()->itemData(mpFMIPage->getLinkingComboBox()->currentIndex()).toString(); if (linking.compare("none") != 0) { platforms.append(linking); }So the
Noneoption is never saved. I am not sure why I did this :). But if I look at buildModelFMU I see that there is noNoneoption so perhaps we can just removeNone. Alsodynamicis the default option whereas in OMEditstaticis used as default option.