diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | lib/Xconfig/various.pm | 4 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,6 @@ +- XFdrake: + o disable "DynamicTwinView" when not using TwinView (#39171) + Version 0.54 - 25 March 2008 - keyboarddrake library: diff --git a/lib/Xconfig/various.pm b/lib/Xconfig/various.pm index 6199ff0..86e3500 100644 --- a/lib/Xconfig/various.pm +++ b/lib/Xconfig/various.pm @@ -178,9 +178,13 @@ sub config { if ($various->{Clone}) { $card->{Options}{TwinView} = undef; $card->{Options}{TwinViewOrientation} = 'Clone'; + delete $card->{Options}{DynamicTwinView}; } else { delete $card->{Options}{TwinView}; delete $card->{Options}{TwinViewOrientation}; + #- below disables runtime setting of TwinView via nvidia-settings + #- it helps on Compiz (#39171) + $card->{Options}{DynamicTwinView} = 'false'; } } elsif ($card->{Driver} eq 'intel') { if ($various->{Clone}) { |