mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Icons for bookmarks popup
This commit is contained in:
@@ -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);
|
||||
|
||||
+1
-1
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user