Changeset 5062 in vbox for trunk/src/VBox/Additions/linux
- Timestamp:
- Sep 26, 2007 5:57:38 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 24875
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/installer/x11config.pl
r4071 r5062 46 46 $in_section = 1; 47 47 } 48 if ($section eq "serverlayout") 49 { 50 $in_layout = 1; 51 } 48 52 } else { 49 53 if ($line =~ /^\s*EndSection/i) 50 54 { 51 55 $in_section = 0; 56 $in_layout = 0; 52 57 } 53 58 } … … 62 67 63 68 # Other drivers sending events interfere badly with pointer integration 64 if ($line =~ /^\s* driver\s+\"(?:alwayscore|sendcoreevents)\"/i)69 if ($line =~ /^\s*option\s+\"(?:alwayscore|sendcoreevents)\"/i) 65 70 { 66 $line = " \n";71 $line = ""; 67 72 } 68 73 … … 70 75 { 71 76 $line = " Driver \"vboxvideo\"\n"; 77 } 78 } 79 if ($in_layout) 80 { 81 # Other drivers sending events interfere badly with pointer integration 82 if ( $line =~ /^\s*inputdevice.*\"(?:alwayscore|sendcoreevents)\"/i) 83 { 84 $line = ""; 72 85 } 73 86 }
Note:
See TracChangeset
for help on using the changeset viewer.