Tool tips not displayed for some elements
Bug #605517 reported by
jus
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Mixxx |
Fix Released
|
Undecided
|
RJ Skerry-Ryan | ||
1.7 |
Won't Fix
|
Undecided
|
Unassigned | ||
1.8 |
Fix Released
|
Undecided
|
RJ Skerry-Ryan |
Bug Description
Mixxx Trunk "(bzr r2432; built on: Jul 14 2010 ; flags: hifieq vinylcontrol midiscript optimize=1 qdebug)
Tested on Mac OS 10.5 & 10.6
Preferences-
The tool tips are set in skin.xml
Affected elements (Tool tips not displayed):
*BPM text
*Pitch rate text
*Playing position/ Duration text
*Track name / Artist text
*(big) Waveforms
This seems broken even in 1.8 beta1 & 1.7.2 on all current skins, all of them have tool tips applied in skin.xml.
Related branches
lp://staging/mixxx/1.8
(Merged)
Changed in mixxx: | |
status: | Fix Committed → Fix Released |
To post a comment you must log in.
I just fixed this. One side effect for Jus's skins is that the use of the <Style> element causes the tooltip to be styled as well. You can fix this by taking a <Style> tag like this:
<Style>font: bold 16px/18px Lucida Grande, Lucida Sans Unicode, Arial, Verdana, sans-serif;
background-color: transparent; color: #E17800; text-align: left;padding-left: 1%;</Style>
And converting it to be:
<Style>QLabel { font: bold 16px/18px Lucida Grande, Lucida Sans Unicode, Arial, Verdana, sans-serif;
background-color: transparent; color: #E17800; text-align: left;padding-left: 1%; }</Style>
That CSS selector will ensure that only QLabel's are affected. You can style the Tooltip by using a QToolTip selector:
<Style>
QLabel { font: bold 16px/18px Lucida Grande, Lucida Sans Unicode, Arial, Verdana, sans-serif;
background-color: transparent; color: #E17800; text-align: left;padding-left: 1%; }
QToolTip { background-color: red; }
</Style>