Skip to content

Commit

Permalink
Merge pull request #29 from Zodsmar/development
Browse files Browse the repository at this point in the history
Slight Fix
  • Loading branch information
Zodsmar authored Apr 27, 2020
2 parents b23a9a3 + 48f84b1 commit 71ac43d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/sassa/gui/guiCollector.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ public class guiCollector {
private List<String> comboBoxManager(GridPane pane, String inORex) {
List<String> checkedTexts = new ArrayList<String>();
int k = 0;
for(int i = 0; i < pane.getRowCount(); i++) {
for(int j =0; j < pane.getColumnCount(); j++) {
for(int i = 0; i < (pane.getChildren().size() / 3) + 1; i++) {
for(int j =0; j < 3; j++) {
//Adding an empty pane to the grid to fill in blanks check based on visiblity because its the only object going to be invisible
if(pane.getChildren().get(k).isVisible()){
VBox tempVbox = (VBox) pane.getChildren().get(k);
Expand Down

0 comments on commit 71ac43d

Please sign in to comment.