Skip to content

Commit

Permalink
0004943: Various visual tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-miller-jumpmind committed Aug 12, 2021
1 parent 1ec6226 commit d410f42
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Expand Up @@ -88,13 +88,15 @@ public ReadOnlyTextAreaDialog(final String title, final String value, Table tabl
this.primaryKeys = primaryKeys;
this.platform = platform;
this.column = table == null ? null : table.getColumnWithName(title);

content.setHeight("90%");

wrapper = new VerticalLayout();
wrapper.setMargin(false);
wrapper.setSizeFull();
textField = new TextArea();
textField.setWidthFull();
textField.setHeight("480px");
textField.getStyle().set("max-height", "480px");
textField.setSizeFull();
//textField.setWordWrap(false);
wrapper.add(textField);
add(wrapper, 1);
Expand Down
Expand Up @@ -235,7 +235,7 @@ protected MenuBar buildLeftMenu() {

MenuItem settings = leftMenu.addItem(new Icon(VaadinIcon.COG), event -> {
SettingsDialog dialog = new SettingsDialog(SqlExplorer.this);
dialog.showAtSize(.5);
dialog.show();
});
settings.getElement().setAttribute("title", "Modify sql explorer settings");

Expand Down

0 comments on commit d410f42

Please sign in to comment.