Marker names are now being displayed when hovering over them

Marker names are now editable in GuiEditKeyframe
This commit is contained in:
CrushedPixel
2015-06-10 16:44:29 +02:00
parent 0390533f9b
commit 05cc37adcc
5 changed files with 96 additions and 13 deletions

View File

@@ -22,11 +22,14 @@ public class MarkerKeyframe extends Keyframe {
return position;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public boolean equals(Object o2) {
if(o2 == null) return false;