mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-03-15 10:26:37 -04:00
Link help to dummy help page
This commit is contained in:
parent
0b808e529b
commit
8d5488b633
@ -87,8 +87,9 @@ public class Navigation {
|
||||
|
||||
public void navigateToLastStoredItem() {
|
||||
Item[] items = (Item[]) persistence.read(this, "navigationItems");
|
||||
// TODO we set BUY as default yet, should be HOME later
|
||||
if (items == null || items.length == 0)
|
||||
items = new Item[]{Item.MAIN, Item.HOME};
|
||||
items = new Item[]{Item.MAIN, Item.BUY};
|
||||
|
||||
navigationTo(items);
|
||||
}
|
||||
|
@ -333,6 +333,10 @@ public class MainViewCB extends ViewCB<MainPM> {
|
||||
AnchorPane.setLeftAnchor(networkSyncPane, 0d);
|
||||
AnchorPane.setBottomAnchor(networkSyncPane, 5d);
|
||||
|
||||
// TODO sometimes it keeps running... deactivate ti for the moment and replace it with the notification pane
|
||||
// from Mike Hearn later
|
||||
networkSyncPane.setVisible(false);
|
||||
|
||||
presentationModel.networkSyncComplete.addListener((ov, old, newValue) -> {
|
||||
if (newValue)
|
||||
networkSyncPane.downloadComplete();
|
||||
|
@ -43,7 +43,8 @@ public class Help {
|
||||
|
||||
public static void openWindow(HelpId id) {
|
||||
try {
|
||||
URL url = new URL("https://github.com/bitsquare/bitsquare/wiki/?" + id);
|
||||
URL url = new URL("http://bitsquare.io/help.html?" + id);
|
||||
// URL url = new URL("https://github.com/bitsquare/bitsquare/wiki/?" + id);
|
||||
WebView webView;
|
||||
if (helpWindow == null) {
|
||||
helpWindow = new Stage();
|
||||
|
Loading…
x
Reference in New Issue
Block a user