Comment 28 for bug 576610

Revision history for this message
negora (negora) wrote : Re: Manhattan tablet (WP8060U) working weird on Ubuntu 10.04 (Lucid Lynx)

stripedxii:

MatchVendor and MatchProduct may not be working because these keys use something called regular expressions, which allow the combination of signs which have a special meaning. The reverse bar \ is one of that special characters and, since you use \x20 , it may be affecting to the rule

Try using a double bar:

"MatchVendor" "\\x20"

Or 4 bars:

"MatchVendor" "\\\\x20"

Or maybe, in the product name, use .* :

"MatchProduct" "TABLET.*"

I hope that anything of that works.