Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
6f0ad441
Commit
6f0ad441
authored
Aug 15, 2012
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ge submenu closing bugfix (refs #1)
parent
eac12bd1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
xtt/lib/glow/src/glow_growctx.cpp
xtt/lib/glow/src/glow_growctx.cpp
+10
-1
No files found.
xtt/lib/glow/src/glow_growctx.cpp
View file @
6f0ad441
...
...
@@ -260,9 +260,18 @@ int GrowCtx::event_handler( glow_eEvent event, int x, int y, int w, int h)
// Check if any menue is active
if
(
a
.
a_size
&&
a
[
a
.
a_size
-
1
]
->
type
()
==
glow_eObjectType_GrowMenu
)
{
for
(
i
=
a
.
a_size
-
1
;
i
>=
0
;
i
--
)
{
if
(
a
[
i
]
->
type
()
!=
glow_eObjectType_GrowMenu
)
break
;
switch
(
event
)
{
case
glow_eEvent_CursorMotion
:
sts
=
a
[
i
]
->
event_handler
(
&
mw
,
event
,
x
,
y
,
fx
,
fy
);
break
;
default:
;
}
}
switch
(
event
)
{
case
glow_eEvent_CursorMotion
:
sts
=
a
[
a
.
a_size
-
1
]
->
event_handler
(
&
mw
,
event
,
x
,
y
,
fx
,
fy
);
return
1
;
case
glow_eEvent_MB1Down
:
case
glow_eEvent_MB1Up
:
...
...
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