mirror of
https://github.com/angryip/ipscan.git
synced 2025-10-26 11:18:17 +00:00
fix mac symbols after refactoring
This commit is contained in:
parent
bbf4dca1a2
commit
00326b3b5f
@ -23,9 +23,9 @@ public class CommandsMenu extends AbstractMenu {
|
||||
initMenuItem(this, "menu.commands.details", null, null, actions.details);
|
||||
initMenuItem(this, null, null, null, null);
|
||||
initMenuItem(this, "menu.commands.rescan", "Ctrl+R", SWT.MOD1 | 'R', actions.rescan, true);
|
||||
initMenuItem(this, "menu.commands.delete", Platform.MAC_OS ? "?" : "Del", /* this is not a global key binding */ null, actions.delete, true);
|
||||
initMenuItem(this, "menu.commands.delete", Platform.MAC_OS ? "⌦" : "Del", /* this is not a global key binding */ null, actions.delete, true);
|
||||
initMenuItem(this, null, null, null, null);
|
||||
initMenuItem(this, "menu.commands.copy", Platform.MAC_OS ? "?C" : "Ctrl+C", /* this is not a global key binding */ null, actions.copyIP);
|
||||
initMenuItem(this, "menu.commands.copy", Platform.MAC_OS ? "⌘C" : "Ctrl+C", /* this is not a global key binding */ null, actions.copyIP);
|
||||
initMenuItem(this, "menu.commands.copyDetails", null, null, actions.copyIPDetails);
|
||||
initMenuItem(this, null, null, null, null);
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user