From 07b65b2000a2d57bca358c8cea9126ff44e8676b Mon Sep 17 00:00:00 2001 From: Sergey Simonchik Date: Thu, 8 Oct 2015 22:38:17 +0300 Subject: [PATCH] presentation: copy hovered icon too --- .../src/com/intellij/openapi/actionSystem/Presentation.java | 1 + 1 file changed, 1 insertion(+) diff --git a/platform/editor-ui-api/src/com/intellij/openapi/actionSystem/Presentation.java b/platform/editor-ui-api/src/com/intellij/openapi/actionSystem/Presentation.java index 792bf13f3aed..c2d753621d17 100644 --- a/platform/editor-ui-api/src/com/intellij/openapi/actionSystem/Presentation.java +++ b/platform/editor-ui-api/src/com/intellij/openapi/actionSystem/Presentation.java @@ -308,6 +308,7 @@ public final class Presentation implements Cloneable { setDescription(presentation.getDescription()); setIcon(presentation.getIcon()); setDisabledIcon(presentation.getDisabledIcon()); + setHoveredIcon(presentation.getHoveredIcon()); setVisible(presentation.isVisible()); setEnabled(presentation.isEnabled()); } -- 2.23.3