mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-05 05:46:44 +00:00
fix cross-platform issues
This commit is contained in:
parent
99a39aa83f
commit
6e2e5d7a9c
2 changed files with 3 additions and 3 deletions
|
@ -78,7 +78,7 @@ public class MainApp extends Application {
|
||||||
|
|
||||||
stage.setTitle("Sparrow");
|
stage.setTitle("Sparrow");
|
||||||
stage.setMinWidth(650);
|
stage.setMinWidth(650);
|
||||||
stage.setMinHeight(700);
|
stage.setMinHeight(830);
|
||||||
stage.setScene(scene);
|
stage.setScene(scene);
|
||||||
stage.getIcons().add(new Image(MainApp.class.getResourceAsStream("/image/sparrow.png")));
|
stage.getIcons().add(new Image(MainApp.class.getResourceAsStream("/image/sparrow.png")));
|
||||||
|
|
||||||
|
|
|
@ -144,13 +144,13 @@ public class MempoolSizeFeeRatesChart extends StackedAreaChart<String, Number> {
|
||||||
private Map<Date, String> getCategories(Map<Date, Set<MempoolRateSize>> mempoolHistogram) {
|
private Map<Date, String> getCategories(Map<Date, Set<MempoolRateSize>> mempoolHistogram) {
|
||||||
Map<Date, String> categories = new LinkedHashMap<>();
|
Map<Date, String> categories = new LinkedHashMap<>();
|
||||||
|
|
||||||
String invisible = "" + (char)29;
|
String invisible = "" + '\ufeff';
|
||||||
for(Iterator<Date> iter = mempoolHistogram.keySet().iterator(); iter.hasNext(); ) {
|
for(Iterator<Date> iter = mempoolHistogram.keySet().iterator(); iter.hasNext(); ) {
|
||||||
Date date = iter.next();
|
Date date = iter.next();
|
||||||
String label = dateFormatter.format(date);
|
String label = dateFormatter.format(date);
|
||||||
if(!categories.isEmpty() && iter.hasNext()) {
|
if(!categories.isEmpty() && iter.hasNext()) {
|
||||||
label = invisible;
|
label = invisible;
|
||||||
invisible += (char)29;
|
invisible += '\ufeff';
|
||||||
}
|
}
|
||||||
|
|
||||||
categories.put(date, label);
|
categories.put(date, label);
|
||||||
|
|
Loading…
Reference in a new issue