Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SOHViewer
Manage
Activity
Members
Labels
Plan
Issues
14
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
5
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Software Public
PASSOFT
SOHViewer
Commits
3ca58370
Commit
3ca58370
authored
1 year ago
by
Kien Le
Browse files
Options
Downloads
Patches
Plain Diff
Fix the problem
parent
d552c7de
No related branches found
No related tags found
1 merge request
!202
Plotting multiColorDots channels break the program when they have an underscore color
Pipeline
#3114
passed with stage
in 4 minutes and 39 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sohstationviewer/view/plotting/plotting_widget/plotting.py
+2
-0
2 additions, 0 deletions
sohstationviewer/view/plotting/plotting_widget/plotting.py
with
2 additions
and
0 deletions
sohstationviewer/view/plotting/plotting_widget/plotting.py
+
2
−
0
View file @
3ca58370
...
...
@@ -79,6 +79,8 @@ class Plotting:
# flatten point_list to be x
x
=
[
item
for
row
in
points_list
for
item
in
row
]
for
points
,
c
in
zip
(
points_list
,
colors
):
if
c
==
'
_
'
:
continue
ax
.
plot
(
points
,
len
(
points
)
*
[
0
],
linestyle
=
""
,
marker
=
'
s
'
,
markersize
=
2
,
zorder
=
constants
.
Z_ORDER
[
'
DOT
'
],
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment