|
|
|
@ -102,6 +102,7 @@ DragDrop.DropArea {
|
|
|
|
|
property bool inStartup: true
|
|
|
|
|
property bool isHalfShown: false //is used to disable the zoom hovering effect at sliding in-out the dock
|
|
|
|
|
property bool isHorizontal: plasmoid.formFactor === PlasmaCore.Types.Horizontal
|
|
|
|
|
property bool isReady: !(dockIsHidden || inSlidingIn || inSlidingOut)
|
|
|
|
|
property bool isVertical: !isHorizontal
|
|
|
|
|
property bool isHovered: latteApplet ? ((latteAppletHoveredIndex !== -1) && (layoutsContainer.hoveredIndex !== -1)) //|| wholeArea.containsMouse
|
|
|
|
|
: (layoutsContainer.hoveredIndex !== -1) //|| wholeArea.containsMouse
|
|
|
|
@ -561,6 +562,12 @@ DragDrop.DropArea {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onIsReadyChanged: {
|
|
|
|
|
if (isReady && !titleTooltipDialog.visible && titleTooltipDialog.activeItemHovered){
|
|
|
|
|
titleTooltipDialog.show(titleTooltipDialog.activeItem, titleTooltipDialog.activeItemText);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onIsVerticalChanged: {
|
|
|
|
|
if (isVertical) {
|
|
|
|
|
if (plasmoid.configuration.panelPosition === Latte.Dock.Left)
|
|
|
|
@ -1344,7 +1351,10 @@ DragDrop.DropArea {
|
|
|
|
|
activeItemText = text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
showTitleTooltipTimer.start();
|
|
|
|
|
if (isReady) {
|
|
|
|
|
showTitleTooltipTimer.start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function update() {
|
|
|
|
|