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
5d92030d
Commit
5d92030d
authored
9 years ago
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ge dynamic FocusInput in combination with Invisible bugfix
parent
70e04ce7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
xtt/lib/ge/src/ge_dyn.cpp
xtt/lib/ge/src/ge_dyn.cpp
+6
-2
No files found.
xtt/lib/ge/src/ge_dyn.cpp
View file @
5d92030d
...
...
@@ -14015,6 +14015,7 @@ int GeInputFocus::action( grow_tObject object, glow_tEvent event)
if
(
event
->
object
.
object_type
!=
glow_eObjectType_NoObject
)
{
found
=
0
;
next_inputfocus
=
this
;
int
objcnt
=
0
;
while
(
!
found
)
{
if
(
strcmp
(
next_inputfocus
->
next_horizontal
,
""
)
!=
0
)
{
sts
=
grow_FindObjectByName
(
dyn
->
graph
->
grow
->
ctx
,
next_inputfocus
->
next_horizontal
,
...
...
@@ -14055,7 +14056,8 @@ int GeInputFocus::action( grow_tObject object, glow_tEvent event)
found
=
0
;
}
}
if
(
next_inputfocus
==
this
)
objcnt
++
;
if
(
next_inputfocus
==
this
||
objcnt
>
50
)
break
;
}
...
...
@@ -14218,6 +14220,7 @@ int GeInputFocus::action( grow_tObject object, glow_tEvent event)
if
(
event
->
object
.
object_type
!=
glow_eObjectType_NoObject
)
{
found
=
0
;
next_inputfocus
=
this
;
int
objcnt
=
0
;
while
(
!
found
)
{
if
(
strcmp
(
next_inputfocus
->
next_tab
,
""
)
!=
0
)
{
sts
=
grow_FindObjectByName
(
dyn
->
graph
->
grow
->
ctx
,
next_inputfocus
->
next_tab
,
&
next
);
...
...
@@ -14238,7 +14241,8 @@ int GeInputFocus::action( grow_tObject object, glow_tEvent event)
found
=
0
;
}
}
if
(
next_inputfocus
==
this
)
objcnt
++
;
if
(
next_inputfocus
==
this
||
objcnt
>
50
)
break
;
}
if
(
found
)
{
...
...
This diff is collapsed.
Click to expand it.
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