Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Cameron Cawley
Browse
Commits
5aa88136
Commit
5aa88136
authored
27 years ago
by
Andrew Hodgkinson
Browse files
Options
Download
Email Patches
Plain Diff
Made frames_highlight_frame only work if KeyboardCtl=yes
parent
05b6437b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
c/Frames
c/Frames
+8
-1
No files found.
c/Frames
View file @
5aa88136
...
...
@@ -1861,7 +1861,8 @@ static browser_data * frames_find_previous_frame(browser_data * check, browser_d
/* removed by a NULL poll timer. */
/* */
/* Currently, the highlight will not move with */
/* the parent browser window. */
/* the parent browser window and will only show */
/* if keyboard control is enabled. */
/* */
/* Parameters: Pointer to a browser_data struct */
/* relevant to the frame to be */
...
...
@@ -1876,6 +1877,12 @@ _kernel_oserror * frames_highlight_frame(browser_data * b)
_kernel_oserror
*
e
;
BBox
top
,
bottom
,
left
,
right
;
/* Don't do anything if not using keyboard control */
if
(
!
choices
.
keyboardctl
)
return
NULL
;
/* Otherwise, proceed */
if
(
!
ancestor
)
ancestor
=
b
;
s
.
window_handle
=
b
->
window_handle
;
...
...
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