Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
minerva
core
Merge requests
!1028
issues that were discovered during biohackathon 2019 in Paris
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
issues that were discovered during biohackathon 2019 in Paris
wikipathways-issues
into
master
Overview
0
Commits
55
Pipelines
1
Changes
7
Merged
Piotr Gawron
requested to merge
wikipathways-issues
into
master
5 years ago
Overview
0
Commits
55
Pipelines
1
Changes
7
Expand
0
0
Merge request reports
Viewing commit
51cbcbfc
Prev
Next
Show latest version
7 files
+
71
−
11
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
51cbcbfc
import from cell designer doesn't round dimension to integer
· 51cbcbfc
Piotr Gawron
authored
5 years ago
converter-CellDesigner/src/main/java/lcsb/mapviewer/converter/model/celldesigner/alias/ComplexAliasXmlParser.java
+
2
−
2
Options
@@ -139,8 +139,8 @@ public class ComplexAliasXmlParser extends AbstractAliasXmlParser<Complex> {
if
(
view
!=
null
)
{
// inner position defines the position in compartment or complexAlias
// result.moveBy(view.innerPosition);
result
.
setWidth
(
view
.
getBoxSize
().
w
idth
);
result
.
setHeight
(
view
.
getBoxSize
().
h
eight
);
result
.
setWidth
(
view
.
getBoxSize
().
getW
idth
()
);
result
.
setHeight
(
view
.
getBoxSize
().
getH
eight
()
);
result
.
setLineWidth
(
view
.
getSingleLine
().
getWidth
());
result
.
setFillColor
(
view
.
getColor
());
}
else
if
(!
state
.
equalsIgnoreCase
(
"complexnoborder"
))
{
Loading