Fix ttip text on copy action

This commit is contained in:
SiboVG 2022-05-30 14:56:19 +02:00
parent 3b6f914496
commit f762dc11aa

View File

@ -646,7 +646,7 @@ public class RocketActions {
this.putValue(MNEMONIC_KEY, KeyEvent.VK_C); this.putValue(MNEMONIC_KEY, KeyEvent.VK_C);
this.putValue(ACCELERATOR_KEY, COPY_KEY_STROKE); this.putValue(ACCELERATOR_KEY, COPY_KEY_STROKE);
//// Copy this component (and subcomponents) to the clipboard. //// Copy this component (and subcomponents) to the clipboard.
this.putValue(SHORT_DESCRIPTION, trans.get("RocketActions.CopyAct.Copy")); this.putValue(SHORT_DESCRIPTION, trans.get("RocketActions.CopyAct.ttip.Copy"));
this.putValue(SMALL_ICON, Icons.EDIT_COPY); this.putValue(SMALL_ICON, Icons.EDIT_COPY);
clipboardChanged(); clipboardChanged();
} }