Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 58bbdbd1 authored by George Mount's avatar George Mount
Browse files

Fix targeting transition by transitionName.

Change-Id: I5e51b524a3a249cd2d7dbba3ccb06d0a5ca8fb73
parent 1e2b2ba4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -995,7 +995,7 @@ public abstract class Transition implements Cloneable {
     */
    public Transition addTarget(String targetName) {
        if (targetName != null) {
            if (mTargetNames != null) {
            if (mTargetNames == null) {
                mTargetNames = new ArrayList<String>();
            }
            mTargetNames.add(targetName);