Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
Printrun
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
Printrun
Commits
6e658cd1
Commit
6e658cd1
authored
Nov 11, 2011
by
Duane Johnson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check for corner change on mouse move (rare case)
parent
08d4abbe
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
xybuttons.py
xybuttons.py
+2
-1
No files found.
xybuttons.py
View file @
6e658cd1
...
@@ -252,6 +252,7 @@ class XYButtons(BufferedCanvas):
...
@@ -252,6 +252,7 @@ class XYButtons(BufferedCanvas):
if
not
self
.
enabled
:
if
not
self
.
enabled
:
return
return
oldcorner
=
self
.
corner
oldq
,
oldc
=
self
.
quadrant
,
self
.
concentric
oldq
,
oldc
=
self
.
quadrant
,
self
.
concentric
mpos
=
event
.
GetPosition
()
mpos
=
event
.
GetPosition
()
...
@@ -278,7 +279,7 @@ class XYButtons(BufferedCanvas):
...
@@ -278,7 +279,7 @@ class XYButtons(BufferedCanvas):
if
mpos
.
x
<
cx
and
mpos
.
y
>=
cy
:
if
mpos
.
x
<
cx
and
mpos
.
y
>=
cy
:
self
.
corner
=
3
self
.
corner
=
3
if
oldq
!=
self
.
quadrant
or
oldc
!=
self
.
concentric
:
if
oldq
!=
self
.
quadrant
or
oldc
!=
self
.
concentric
or
oldcorner
!=
self
.
corner
:
self
.
update
()
self
.
update
()
def
OnLeftDown
(
self
,
event
):
def
OnLeftDown
(
self
,
event
):
...
...
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