show tooltips by default

--shows Latte tooltips by default except
if an applet is locked or zoomfactor==1
pull/2/head
Michail Vourlakos 7 years ago
parent ca6188bf46
commit 92c025d94d

@ -237,7 +237,7 @@
<default>true</default>
</entry>
<entry name="titleTooltips" type="Bool">
<default>false</default>
<default>true</default>
</entry>
<entry name="indicateAudioStreams" type="Bool">
<default>true</default>

@ -460,15 +460,6 @@ Item {
///END connections
PlasmaComponents.BusyIndicator {
z: 1000
visible: applet && applet.busy
running: visible
anchors.centerIn: parent
width: Math.min(parent.width, parent.height)
height: width
}
/* Rectangle{
anchors.fill: parent
color: "transparent"
@ -520,6 +511,16 @@ Item {
}// Flow with hidden spacers inside
//Busy Indicator
PlasmaComponents.BusyIndicator {
z: 1000
visible: applet && applet.busy
running: visible
anchors.centerIn: parent
width: Math.min(parent.width, parent.height)
height: width
}
//! The Launchers Area Indicator
Rectangle{
anchors.fill: parent
@ -563,7 +564,7 @@ Item {
id: appletMouseArea
anchors.fill: parent
enabled: (!latteApplet)&&(canBeHovered)&&(!root.editMode)//&&(!lockZoom)
enabled: !latteApplet && canBeHovered && !root.editMode && !lockZoom && root.zoomFactor>1
hoverEnabled: !root.editMode && (!latteApplet) ? true : false
propagateComposedEvents: true

Loading…
Cancel
Save