### Eclipse Workspace Patch 1.0
#P org.sophie2.main.func.text
|
|
|
223 | 223 | |
224 | 224 | TextLinksHud hud = event.getSource(TextLinksHud.class); |
225 | 225 | Link newLink = event.getEventParam(0, Link.class); |
226 | | LinkAttachment textLink = new LinkAttachment(newLink, ImmColor.MAGENTA); |
| 226 | ImmColor magenta = ImmColor.MAGENTA; |
| 227 | ImmColor linkColor = new ImmColor(magenta.getRedValue(), |
| 228 | magenta.getGreenValue(),magenta.getBlueValue(), 0.2f); |
| 229 | LinkAttachment textLink = new LinkAttachment(newLink, linkColor); |
227 | 230 | String description = event.getEventParam(1, String.class); |
228 | 231 | |
229 | 232 | TextFrameView frameView = AppHaloUtil.getSingleSelected(hud, TextFrameView.class); |