mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Fix a minor tooltip font glitch in preferences
This commit is contained in:
parent
be71894ad0
commit
24c3087326
@ -654,6 +654,11 @@ bool PRS1Loader::ParseSummary(Machine *mach, qint32 sequence, quint32 timestamp,
|
||||
offset += 12;
|
||||
}
|
||||
|
||||
// on some 60 series it's one off. or was the original 60 series patch wrong?
|
||||
// I verified this comment below against several data samples compared with encore reports.
|
||||
//duration=data[0x1B] | data[0x1C] << 8) // Session length in seconds
|
||||
|
||||
|
||||
duration = data[offset + 0x14] | (data[offset + 0x15] << 8);
|
||||
|
||||
if (!duration) {
|
||||
|
@ -51,7 +51,7 @@
|
||||
<item>
|
||||
<widget class="QTabWidget" name="tabWidget">
|
||||
<property name="currentIndex">
|
||||
<number>0</number>
|
||||
<number>6</number>
|
||||
</property>
|
||||
<widget class="QWidget" name="importTab">
|
||||
<attribute name="title">
|
||||
@ -2229,11 +2229,7 @@ this application to be unstable with this feature enabled.</string>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="usePixmapCaching">
|
||||
<property name="toolTip">
|
||||
<string><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Pixmap caching is an graphics acceleration technique. May cause problems with font drawing in graph display area on your platform.</span></p></body></html></string>
|
||||
<string>Pixmap caching is an graphics acceleration technique. May cause problems with font drawing in graph display area on your platform.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Use Pixmap Caching</string>
|
||||
|
Loading…
Reference in New Issue
Block a user