Re-enable time path after path playback (fixes #55)

This commit is contained in:
johni0702
2017-01-28 11:44:04 +01:00
parent 64898ce288
commit f7460f9bf5

View File

@@ -311,12 +311,14 @@ public class GuiPathing {
@Override @Override
public void onSuccess(@Nullable Void result) { public void onSuccess(@Nullable Void result) {
overlay.setCloseable(true); overlay.setCloseable(true);
timePath.setActive(true);
} }
@Override @Override
public void onFailure(Throwable t) { public void onFailure(Throwable t) {
t.printStackTrace(); t.printStackTrace();
overlay.setCloseable(true); overlay.setCloseable(true);
timePath.setActive(true);
} }
}); });
} }