Fix scrollbar graphic bug

This commit is contained in:
Manfred Karrer 2016-03-04 20:54:50 +01:00
parent 2b3387d385
commit bbe874c920
3 changed files with 4 additions and 2 deletions

View file

@ -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);
} }

View file

@ -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

View file

@ -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<>();