Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Benjamin Jakimow
EO Time Series Viewer
Commits
a5a40be8
Commit
a5a40be8
authored
Oct 31, 2012
by
Luke Campagnola
Browse files
Bugfix: GLScatterPlotItem would not display when using non-array size and pxMode=True
parent
eab1d755
Changes
1
Show whitespace changes
Inline
Side-by-side
opengl/items/GLScatterPlotItem.py
View file @
a5a40be8
...
...
@@ -139,7 +139,8 @@ class GLScatterPlotItem(GLGraphicsItem):
glNormalPointerf
(
norm
)
else
:
glPointSize
(
self
.
size
)
glNormal3f
(
self
.
size
,
0
,
0
)
#glPointSize(self.size)
glDrawArrays
(
GL_POINTS
,
0
,
len
(
self
.
pos
))
finally
:
glDisableClientState
(
GL_NORMAL_ARRAY
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment