Skip to content
This repository was archived by the owner on Dec 27, 2024. It is now read-only.

CircularFlow: Allow to set angles programmatically #813

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -402,9 +402,12 @@ private int[] removeRadius(int[] radius, int index) {
}

/**
*
* Set the angles for the views in the CircularFlow.
* The comma separated string should match the order of the views in the CircularFlow.
* @param idList comma separated angles in string
* @return
*/
private void setAngles(String idList) {
public void setAngles(String idList) {
if (idList == null) {
return;
}
Expand Down