Re-enable hardware acceleration
For all the people who turned it off to fix rendering problems in the PDF reader due to Fx60
This commit is contained in:
parent
6440a23f96
commit
8e6f33f045
1 changed files with 7 additions and 1 deletions
|
@ -49,7 +49,7 @@ Zotero.Prefs = new function(){
|
||||||
if (!fromVersion) {
|
if (!fromVersion) {
|
||||||
fromVersion = 0;
|
fromVersion = 0;
|
||||||
}
|
}
|
||||||
var toVersion = 6;
|
var toVersion = 7;
|
||||||
if (fromVersion < toVersion) {
|
if (fromVersion < toVersion) {
|
||||||
for (var i = fromVersion + 1; i <= toVersion; i++) {
|
for (var i = fromVersion + 1; i <= toVersion; i++) {
|
||||||
switch (i) {
|
switch (i) {
|
||||||
|
@ -103,6 +103,12 @@ Zotero.Prefs = new function(){
|
||||||
this.clear('export.noteQuickCopy.setting');
|
this.clear('export.noteQuickCopy.setting');
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
// Re-enable hardware acceleration in Zotero 7 for all the people who turned it
|
||||||
|
// off to fix PDF rendering problems
|
||||||
|
case 7:
|
||||||
|
this.clear('layers.acceleration.disabled', true);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.set('prefVersion', toVersion);
|
this.set('prefVersion', toVersion);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue