mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-04-18 14:55:53 -04:00
Fix compilation errors
This commit is contained in:
parent
5f69f84f85
commit
f4b35ba48b
@ -27,6 +27,10 @@ import io.bitsquare.gui.components.Popups;
|
||||
import io.bitsquare.gui.components.SystemNotification;
|
||||
import io.bitsquare.gui.util.Transitions;
|
||||
|
||||
import java.net.URL;
|
||||
|
||||
import java.util.ResourceBundle;
|
||||
|
||||
import javax.inject.Inject;
|
||||
import javax.inject.Named;
|
||||
|
||||
@ -73,7 +77,9 @@ public class MainView extends View<MainViewModel> {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void initialize() {
|
||||
public void initialize(URL url, ResourceBundle rb) {
|
||||
super.initialize(url, rb);
|
||||
|
||||
ToggleButton homeButton = new NavButton(HOME) {{
|
||||
setDisable(true); // during irc demo
|
||||
}};
|
||||
@ -140,7 +146,7 @@ public class MainView extends View<MainViewModel> {
|
||||
|
||||
VBox splashScreen = createSplashScreen();
|
||||
|
||||
root.getChildren().addAll(baseApplicationContainer, splashScreen);
|
||||
((StackPane) root).getChildren().addAll(baseApplicationContainer, splashScreen);
|
||||
|
||||
Platform.runLater(
|
||||
() -> model.initBackend().subscribe(
|
||||
|
@ -21,7 +21,6 @@ import io.bitsquare.bank.BankAccount;
|
||||
import io.bitsquare.btc.BitcoinNetwork;
|
||||
import io.bitsquare.btc.WalletService;
|
||||
import io.bitsquare.gui.ViewModel;
|
||||
import io.bitsquare.gui.XModel;
|
||||
import io.bitsquare.gui.util.BSFormatter;
|
||||
import io.bitsquare.msg.MessageService;
|
||||
import io.bitsquare.network.BootstrapState;
|
||||
|
Loading…
x
Reference in New Issue
Block a user