Copies the entry information to the system clipboard (as text).
()
| 233 | /// Copies the entry information to the system clipboard (as text). |
| 234 | /// </summary> |
| 235 | public void Copy() |
| 236 | { |
| 237 | Clipboard.Text = Info.Replace("\r\n", "\n").Replace("\n", Environment.NewLine); |
| 238 | } |
| 239 | |
| 240 | public override bool OnMouseDoubleClick(Float2 location, MouseButton button) |
| 241 | { |