We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d0ecff commit 89076c4Copy full SHA for 89076c4
app/features/selectable.js
@@ -397,7 +397,12 @@ export function Selectable(visbug) {
397
overlayHoverUI({
398
el: $target,
399
// no_hover: tool === 'guides',
400
- no_label: tool !== 'guides',
+ no_label:
401
+ tool === 'guides'
402
+ || tool === 'accessibility'
403
+ || tool === 'margin'
404
+ || tool === 'padding'
405
+ || tool === 'inspector',
406
})
407
408
if (tool === 'guides' && selected.length >= 1 && !selected.includes($target)) {
@@ -430,7 +435,7 @@ export function Selectable(visbug) {
430
435
overlayMetaUI({
431
436
el,
432
437
id,
433
- no_label: tool !== 'inspector' && tool !== 'accessibility',
438
+ no_label: tool === 'inspector' || tool === 'guides' || tool === 'accessibility',
434
439
440
441
selected.unshift(el)
0 commit comments