mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-188960 pseudo-tooltip very annoying issue
New registry key ide.hide.expandable.tooltip.owner.mouse.exit=true Now we hide expandable tooltips when mouse leaves visible area of 'owner' component
This commit is contained in:
@@ -118,7 +118,7 @@ public abstract class AbstractExpandableItemsHandler<KeyType, ComponentType exte
|
||||
@Override
|
||||
public void mouseExited(MouseEvent event) {
|
||||
// don't hide the hint if mouse exited to it
|
||||
if (myTipComponent.getMousePosition() == null) {
|
||||
if (Registry.is("ide.hide.expandable.tooltip.owner.mouse.exit") || myTipComponent.getMousePosition() == null) {
|
||||
hideHint();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -263,6 +263,8 @@ ide.helptooltip.enabled.restartRequired=true
|
||||
ide.helptooltip.enabled.description=Enables new style help context tooltips
|
||||
ide.helptooltip.regular.dismissDelay=10000
|
||||
ide.helptooltip.full.dismissDelay=30000
|
||||
ide.hide.expandable.tooltip.owner.mouse.exit=true
|
||||
ide.hide.expandable.tooltip.owner.mouse.exit.description=Provides autohiding for expandable tooltip when mouse leaves visible area of 'owner' component
|
||||
|
||||
ide.expansion.hints.enabled=true
|
||||
ide.expansion.hints.enabled.description=Enables expansion hints for lists, trees and tables to show invisible part of a cell renderer.
|
||||
|
||||
Reference in New Issue
Block a user