Skip to content

Commit

Permalink
[CLEANUP] Hide sub port column in mode editor for now
Browse files Browse the repository at this point in the history
  • Loading branch information
epekkar committed Dec 7, 2023
1 parent 1e8a64b commit e36030c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
4 changes: 3 additions & 1 deletion Help/componenteditor/mode2022.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,11 @@ <h3>Condition ports</h3>
<b>Physical port</b> is a mandatory and identifies the <i>port</i> in the
component whose value may be checked in the condition.
</p>
<!--
<p>
<b>Sub port</b>
<b>Sub port</b> not supported yet.
</p>
-->
<p>
<b>Left</b> and <b>right bounds</b> are optional for selecting a range of
bits in the port. If no indices are defined, the whole port is selected.
Expand Down
4 changes: 2 additions & 2 deletions editors/ComponentEditor/modes/PortSliceEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ QWidget(parent),
view_.setDefaultImportExportPath(defPath);
view_.setAllowImportExport(true);
view_.setItemsDraggable(false);
view_.setSortingEnabled(true);

view_.setSortingEnabled(true);
view_.hideColumn(PortSliceColumns::SUB_PORT);

ComponentParameterModel* parameterModel = new ComponentParameterModel(expressions.finder, this);
parameterModel->setExpressionParser(expressions.parser);
Expand Down
14 changes: 7 additions & 7 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@
#ifndef VERSIONNO__H
#define VERSIONNO__H

#define VERSION_FULL 3.12.1139.0
#define VERSION_FULL 3.12.1140.0

#define VERSION_BASEYEAR 0
#define VERSION_DATE "2023-12-07"
#define VERSION_TIME "08:13:53"
#define VERSION_TIME "08:39:20"

#define VERSION_MAJOR 3
#define VERSION_MINOR 12
#define VERSION_BUILDNO 1139
#define VERSION_BUILDNO 1140
#define VERSION_EXTEND 0

#define VERSION_FILE 3,12,1139,0
#define VERSION_PRODUCT 3,12,1139,0
#define VERSION_FILESTR "3,12,1139,0"
#define VERSION_PRODUCTSTR "3,12,1139,0"
#define VERSION_FILE 3,12,1140,0
#define VERSION_PRODUCT 3,12,1140,0
#define VERSION_FILESTR "3,12,1140,0"
#define VERSION_PRODUCTSTR "3,12,1140,0"

#endif

0 comments on commit e36030c

Please sign in to comment.