Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yad
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vladislav
yad
Commits
1c9ca82f
You need to sign in or sign up before continuing.
Commit
1c9ca82f
authored
Dec 14, 2022
by
Victor Ananjevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed jump to anchor in simple mode of html dialog
parent
adcb6b15
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
html.c
src/html.c
+11
-4
No files found.
src/html.c
View file @
1c9ca82f
...
...
@@ -130,17 +130,24 @@ policy_cb (WebKitWebView *v, WebKitPolicyDecision *pd, WebKitPolicyDecisionType
if
(
!
options
.
html_data
.
browser
)
{
WebKitNavigationAction
*
act
=
webkit_navigation_policy_decision_get_navigation_action
(
WEBKIT_NAVIGATION_POLICY_DECISION
(
pd
));
webkit_policy_decision_ignore
(
pd
);
if
(
webkit_navigation_action_get_navigation_type
(
act
)
==
WEBKIT_NAVIGATION_TYPE_LINK_CLICKED
)
{
WebKitURIRequest
*
r
=
webkit_navigation_action_get_request
(
act
);
uri
=
webkit_uri_request_get_uri
(
r
);
if
(
options
.
html_data
.
print_uri
)
g_printf
(
"%s
\n
"
,
uri
);
if
(
strncmp
(
uri
,
"about:blank#"
,
11
)
==
0
)
webkit_policy_decision_use
(
pd
);
else
g_app_info_launch_default_for_uri
(
uri
,
NULL
,
NULL
);
{
webkit_policy_decision_ignore
(
pd
);
if
(
options
.
html_data
.
print_uri
)
g_printf
(
"%s
\n
"
,
uri
);
else
g_app_info_launch_default_for_uri
(
uri
,
NULL
,
NULL
);
}
}
else
webkit_policy_decision_ignore
(
pd
);
}
else
if
(
uri_cmd
&&
options
.
data
.
uri_handler
&&
options
.
data
.
uri_handler
[
0
])
{
...
...
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