Code review comment for lp:~brandontschaefer/compiz/disable-tap-detection

Revision history for this message
Daniel van Vugt (vanvugt) wrote :

We should avoid double negatives because they're confusing to read. So:
            <xsl:when test="./disable_tap_detection/text() = 'true'">
should be:
            <xsl:when test="./enable_tap_detection/text() = 'false'">

review: Needs Fixing

« Back to merge proposal