projects
/
mupdf.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac6276e
)
Bug 705332: Fix default checkbox state for alert events.
author
Sebastian Rasmussen
<
[email protected]
>
Tue, 24 May 2022 15:54:39 +0000
(17:54 +0200)
committer
Sebastian Rasmussen
<
[email protected]
>
Tue, 24 May 2022 15:56:10 +0000
(17:56 +0200)
Previously it defaulted to checked, but the spec states that
oCheckbox.bInitialValue should default to false.
source/pdf/pdf-js.c
patch
|
blob
|
blame
|
history
diff --git
a/source/pdf/pdf-js.c
b/source/pdf/pdf-js.c
index e681781cb6d31678a65e6b99b0a9bb6bb2f485fb..9b9b8f4dc985c9847d92e9e8dd8834ab97b52c77 100644
(file)
--- a/
source/pdf/pdf-js.c
+++ b/
source/pdf/pdf-js.c
@@
-90,8
+90,8
@@
static void app_alert(js_State *J)
evt.title = js_isdefined(J, 4) ? js_tostring(J, 4) : "PDF alert";
evt.check_box_message = "Do not show this message again";
- evt.initially_checked =
1
;
- evt.finally_checked =
1
;
+ evt.initially_checked =
0
;
+ evt.finally_checked =
0
;
if (js_isobject(J, 6))
{