Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
VTK
VTK
Commits
0ab4f15f
Commit
0ab4f15f
authored
Jan 28, 2005
by
Mathieu Malaterre
Browse files
BUG: Fix upper/lower case problem. Thanks to Patrick Brockmann for patch
parent
ff5e1b56
Changes
1
Hide whitespace changes
Inline
Side-by-side
Wrapping/Python/vtk/qt/QVTKRenderWindowInteractor.py
View file @
0ab4f15f
...
...
@@ -279,7 +279,7 @@ class QVTKRenderWindowInteractor(qt.QWidget):
ctrl
,
shift
=
self
.
_GetCtrlShift
(
ev
)
key
=
chr
(
0
)
if
ev
.
key
()
<
256
:
key
=
ch
r
(
ev
.
key
())
key
=
st
r
(
ev
.
text
())
self
.
_Iren
.
SetEventInformationFlipY
(
self
.
__saveX
,
self
.
__saveY
,
ctrl
,
shift
,
key
,
0
,
None
)
...
...
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