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

@ -191,7 +191,7 @@ public class BitsquareApp extends Application {
// configure the primary stage
primaryStage.setTitle(env.getRequiredProperty(APP_NAME_KEY));
primaryStage.setScene(scene);
primaryStage.setMinWidth(750);
primaryStage.setMinWidth(1040);
primaryStage.setMinHeight(620);
// 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) {
TableView<Offer> tableView = new TableView<>();
tableView.setMinHeight(100);
tableView.setMinWidth(390);
// price
TableColumn<Offer, Offer> priceColumn = new TableColumn<>();