GT-3155 - Copy Special - allow the Copy Special action to work on the

current address when there is no selection
This commit is contained in:
dragonmacher 2019-10-30 11:46:30 -04:00
parent 3051601206
commit bbe4b89a0d
3 changed files with 87 additions and 58 deletions

View file

@ -46,14 +46,6 @@ public class ByteViewerClipboardProvider extends ByteCopier
return copyTypesList;
}
private static final List<ClipboardType> PASTE_TYPES = createPasteTypesList();
private static List<ClipboardType> createPasteTypesList() {
List<ClipboardType> pasteTypesList = new LinkedList<>();
pasteTypesList.add(BYTE_STRING_TYPE);
return pasteTypesList;
}
private boolean copyEnabled;
private boolean pasteEnabled;
private Set<ChangeListener> listeners = new CopyOnWriteArraySet<>();