Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
Michiel Cottaar
fslpy
Commits
ee7e76bf
Commit
ee7e76bf
authored
9 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
Sometimes profile.mouseUp handlers will be called without a prior call
to profile.mouseDown/Drag
parent
fa53b121
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
fsl/fslview/gl/globject.py
+3
-3
3 additions, 3 deletions
fsl/fslview/gl/globject.py
fsl/fslview/profiles/orthoviewprofile.py
+8
-1
8 additions, 1 deletion
fsl/fslview/profiles/orthoviewprofile.py
with
11 additions
and
4 deletions
fsl/fslview/gl/globject.py
+
3
−
3
View file @
ee7e76bf
...
@@ -61,12 +61,12 @@ class GLObject(object):
...
@@ -61,12 +61,12 @@ class GLObject(object):
this instance, ``name``, which is simply a unique name for this
this instance, ``name``, which is simply a unique name for this
instance.
instance.
Subclass implementations should call this method, and should perform
Subclass implementations must call this method, and should also
any necessary OpenGL initialisation, such as creating textures.
perform any necessary OpenGL initialisation, such as creating
textures.
"""
"""
self
.
name
=
'
{}_{}
'
.
format
(
type
(
self
).
__name__
,
id
(
self
))
self
.
name
=
'
{}_{}
'
.
format
(
type
(
self
).
__name__
,
id
(
self
))
self
.
__updateListeners
=
{}
self
.
__updateListeners
=
{}
...
...
This diff is collapsed.
Click to expand it.
fsl/fslview/profiles/orthoviewprofile.py
+
8
−
1
View file @
ee7e76bf
...
@@ -70,6 +70,11 @@ class OrthoViewProfile(profiles.Profile):
...
@@ -70,6 +70,11 @@ class OrthoViewProfile(profiles.Profile):
self
.
_ycanvas
=
canvasPanel
.
getYCanvas
()
self
.
_ycanvas
=
canvasPanel
.
getYCanvas
()
self
.
_zcanvas
=
canvasPanel
.
getZCanvas
()
self
.
_zcanvas
=
canvasPanel
.
getZCanvas
()
# This attribute will occasionally store a
# reference to a gl.annotations.Rectangle -
# see the _zoomModeLeftMouse* handlers
self
.
_lastRect
=
None
def
getEventTargets
(
self
):
def
getEventTargets
(
self
):
"""
"""
...
@@ -229,7 +234,9 @@ class OrthoViewProfile(profiles.Profile):
...
@@ -229,7 +234,9 @@ class OrthoViewProfile(profiles.Profile):
mouseDownPos
,
canvasDownPos
=
self
.
getMouseDownLocation
()
mouseDownPos
,
canvasDownPos
=
self
.
getMouseDownLocation
()
canvas
.
getAnnotations
().
dequeue
(
self
.
_lastRect
)
if
self
.
_lastRect
is
not
None
:
canvas
.
getAnnotations
().
dequeue
(
self
.
_lastRect
)
self
.
_lastRect
=
None
rectXlen
=
abs
(
canvasPos
[
canvas
.
xax
]
-
canvasDownPos
[
canvas
.
xax
])
rectXlen
=
abs
(
canvasPos
[
canvas
.
xax
]
-
canvasDownPos
[
canvas
.
xax
])
rectYlen
=
abs
(
canvasPos
[
canvas
.
yax
]
-
canvasDownPos
[
canvas
.
yax
])
rectYlen
=
abs
(
canvasPos
[
canvas
.
yax
]
-
canvasDownPos
[
canvas
.
yax
])
...
...
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