Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow spending of unconfirmed BSQ change outputs #2482

Merged
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ private void updateListItems() {
onSelectProposal(null);
}

GUIUtil.setFitToRowsForTableView(tableView, 37, 28, 2, 4);
GUIUtil.setFitToRowsForTableView(tableView, 38, 28, 2, 6);
tableView.layout();
root.layout();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ private void fillCycleList() {
});
Collections.reverse(cycleListItemList);

GUIUtil.setFitToRowsForTableView(cyclesTableView, 24, 28, 2, 4);
GUIUtil.setFitToRowsForTableView(cyclesTableView, 25, 28, 2, 4);
}


Expand Down Expand Up @@ -409,7 +409,7 @@ private void createProposalsTable() {
ballotByProposalTxIdMap.get(evaluatedProposal.getProposalTxId()),
bsqFormatter))
.collect(Collectors.toList()));
GUIUtil.setFitToRowsForTableView(proposalsTableView, 33, 28, 2, 4);
GUIUtil.setFitToRowsForTableView(proposalsTableView, 25, 28, 2, 4);
}


Expand Down Expand Up @@ -480,7 +480,7 @@ private void createVotesTable() {
});

voteListItemList.sort(Comparator.comparing(VoteListItem::getBlindVoteTxId));
GUIUtil.setFitToRowsForTableView(votesTableView, 33, 28, 2, 4);
GUIUtil.setFitToRowsForTableView(votesTableView, 25, 28, 2, 4);
}


Expand Down