mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-07-30 10:18:44 -04:00
Fix scrollbar graphic bug
This commit is contained in:
parent
2b3387d385
commit
bbe874c920
3 changed files with 4 additions and 2 deletions
|
@ -63,7 +63,7 @@ public class Log {
|
||||||
|
|
||||||
logbackLogger = loggerContext.getLogger(org.slf4j.Logger.ROOT_LOGGER_NAME);
|
logbackLogger = loggerContext.getLogger(org.slf4j.Logger.ROOT_LOGGER_NAME);
|
||||||
//TODO for now use always trace
|
//TODO for now use always trace
|
||||||
logbackLogger.setLevel(useDetailedLogging ? Level.TRACE : Level.TRACE);
|
logbackLogger.setLevel(useDetailedLogging ? Level.TRACE : Level.WARN);
|
||||||
// logbackLogger.setLevel(useDetailedLogging ? Level.TRACE : Level.DEBUG);
|
// logbackLogger.setLevel(useDetailedLogging ? Level.TRACE : Level.DEBUG);
|
||||||
logbackLogger.addAppender(appender);
|
logbackLogger.addAppender(appender);
|
||||||
}
|
}
|
||||||
|
|
|
@ -191,7 +191,7 @@ public class BitsquareApp extends Application {
|
||||||
// configure the primary stage
|
// configure the primary stage
|
||||||
primaryStage.setTitle(env.getRequiredProperty(APP_NAME_KEY));
|
primaryStage.setTitle(env.getRequiredProperty(APP_NAME_KEY));
|
||||||
primaryStage.setScene(scene);
|
primaryStage.setScene(scene);
|
||||||
primaryStage.setMinWidth(750);
|
primaryStage.setMinWidth(1040);
|
||||||
primaryStage.setMinHeight(620);
|
primaryStage.setMinHeight(620);
|
||||||
|
|
||||||
// on windows the title icon is also used as task bar icon in a larger size
|
// on windows the title icon is also used as task bar icon in a larger size
|
||||||
|
|
|
@ -155,6 +155,8 @@ public class MarketsChartsView extends ActivatableViewAndModel<VBox, MarketsChar
|
||||||
|
|
||||||
private Tuple3<TableView<Offer>, VBox, Button> getOfferTable(Offer.Direction direction) {
|
private Tuple3<TableView<Offer>, VBox, Button> getOfferTable(Offer.Direction direction) {
|
||||||
TableView<Offer> tableView = new TableView<>();
|
TableView<Offer> tableView = new TableView<>();
|
||||||
|
tableView.setMinHeight(100);
|
||||||
|
tableView.setMinWidth(390);
|
||||||
|
|
||||||
// price
|
// price
|
||||||
TableColumn<Offer, Offer> priceColumn = new TableColumn<>();
|
TableColumn<Offer, Offer> priceColumn = new TableColumn<>();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue