Icons for bookmarks popup

This commit is contained in:
Evgeny Zakrevsky
2012-06-15 15:44:30 +04:00
parent d88e8140b8
commit 59be3cffef
2 changed files with 2 additions and 2 deletions
@@ -32,7 +32,7 @@ class DeleteBookmarkAction extends DumbAwareAction {
private final JList myList;
DeleteBookmarkAction(Project project, JList list) {
super("Delete", "Delete current bookmark", AllIcons.General.Remove);
super("Delete", "Delete current bookmark", AllIcons.Actions.Delete);
myProject = project;
myList = list;
registerCustomShortcutSet(CustomShortcutSet.fromString("DELETE", "BACK_SPACE"), list);
@@ -35,7 +35,7 @@ class EditBookmarkDescriptionAction extends DumbAwareAction {
private JBPopup myPopup;
EditBookmarkDescriptionAction(Project project, JList list) {
super("Edit Description", "Assign short description for the bookmark to be shown along the file name", AllIcons.Actions.Properties);
super("Edit Description", "Assign short description for the bookmark to be shown along the file name", AllIcons.Actions.Edit);
myProject = project;
myList = list;
registerCustomShortcutSet(new CustomShortcutSet(KeyStroke.getKeyStroke(SystemInfo.isMac ? "meta ENTER" : "control ENTER")), list);