Gitweb links:

...log 
http://git.netsurf-browser.org/libcss.git/shortlog/20de9212123bd14efa8f1fd500765038be3851bf
...commit 
http://git.netsurf-browser.org/libcss.git/commit/20de9212123bd14efa8f1fd500765038be3851bf
...tree 
http://git.netsurf-browser.org/libcss.git/tree/20de9212123bd14efa8f1fd500765038be3851bf

The branch, master has been updated
       via  20de9212123bd14efa8f1fd500765038be3851bf (commit)
      from  5a1cc92ccead685d464b99723eac795885366955 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/libcss.git/commit/?id=20de9212123bd14efa8f1fd500765038be3851bf
commit 20de9212123bd14efa8f1fd500765038be3851bf
Author: John-Mark Bell <[email protected]>
Commit: John-Mark Bell <[email protected]>

    select: opacity: correct value

diff --git a/src/select/properties/opacity.c b/src/select/properties/opacity.c
index 818af62..3e875f9 100644
--- a/src/select/properties/opacity.c
+++ b/src/select/properties/opacity.c
@@ -21,7 +21,7 @@ css_error css__cascade_opacity(uint32_t opv, css_style *style,
        css_fixed opacity = 0;
 
        if (hasFlagValue(opv) == false) {
-               value = CSS_Z_INDEX_SET;
+               value = CSS_OPACITY_SET;
 
                opacity = *((css_fixed *) style->bytecode);
                advance_bytecode(style, sizeof(opacity));


-----------------------------------------------------------------------

Summary of changes:
 src/select/properties/opacity.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/select/properties/opacity.c b/src/select/properties/opacity.c
index 818af62..3e875f9 100644
--- a/src/select/properties/opacity.c
+++ b/src/select/properties/opacity.c
@@ -21,7 +21,7 @@ css_error css__cascade_opacity(uint32_t opv, css_style *style,
        css_fixed opacity = 0;
 
        if (hasFlagValue(opv) == false) {
-               value = CSS_Z_INDEX_SET;
+               value = CSS_OPACITY_SET;
 
                opacity = *((css_fixed *) style->bytecode);
                advance_bytecode(style, sizeof(opacity));


-- 
Cascading Style Sheets library
_______________________________________________
netsurf-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to