small fixes with new right click menu

--this fixes right click in zoom factor area
for latte plasmoid and right click in containment
areas that dont have an applet
pull/1/head
Michail Vourlakos 8 years ago
parent 585cb154b7
commit 254ad13536

@ -578,6 +578,10 @@ void DockView::mousePressEvent(QMouseEvent *event)
}
}
if (!applet) {
applet = containment();
}
if (applet) {
KPluginMetaData meta = applet->kPackage().metadata();

@ -587,7 +587,9 @@ Item {
target: icList
property int maxSize: root.statesLineSize + root.iconSize + root.iconMargin - 1
property int maxSize: (root.hoveredIndex>=0 && !root.dragSource) ?
root.statesLineSize + root.zoomFactor * (root.iconSize + root.iconMargin) - 1 :
root.statesLineSize + root.iconSize + root.iconMargin - 1
onUrlsDropped: {
// If all dropped URLs point to application desktop files, we'll add a launcher for each of them.

Loading…
Cancel
Save