mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 12:26:45 +00:00
increase payments tab header width on send tab
This commit is contained in:
parent
be0ac52a09
commit
04c8017bb5
1 changed files with 2 additions and 2 deletions
|
@ -487,8 +487,8 @@ public class SendController extends WalletFormController implements Initializabl
|
|||
}
|
||||
|
||||
public Tab getPaymentTab() {
|
||||
OptionalInt highestTabNo = paymentTabs.getTabs().stream().mapToInt(tab -> Integer.parseInt(tab.getText())).max();
|
||||
Tab tab = new Tab(Integer.toString(highestTabNo.isPresent() ? highestTabNo.getAsInt() + 1 : 1));
|
||||
s OptionalInt highestTabNo = paymentTabs.getTabs().stream().mapToInt(tab -> Integer.parseInt(tab.getText().trim())).max();
|
||||
Tab tab = new Tab(" " + (highestTabNo.isPresent() ? highestTabNo.getAsInt() + 1 : 1) + " ");
|
||||
|
||||
try {
|
||||
FXMLLoader paymentLoader = new FXMLLoader(AppServices.class.getResource("wallet/payment.fxml"));
|
||||
|
|
Loading…
Reference in a new issue