Skip to content

Commit

Permalink
Fix remembering password for sql db (#7154)
Browse files Browse the repository at this point in the history
Fixes #6869

Add misisng binding
  • Loading branch information
Siedlerchr authored Dec 3, 2020
1 parent f22968e commit 4031104
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ inserting new citations in a OpenOffic/LibreOffice document. [#6957](https://git
- We fixed an issue where the color of groups of type "free search expression" not persisting after restarting the application [#6999](https://github.com/JabRef/jabref/issues/6999)
- We fixed an issue where modifications in the source tab where not saved without switching to another field before saving the library [#6622](https://github.com/JabRef/jabref/issues/6622)
- We fixed an issue where the "Document Viewer" did not show the first page of the opened pdf document and did not show the correct total number of pages [#7108](https://github.com/JabRef/jabref/issues/7108)
- We fixed an issue where the password for a shared SQL database was not remembered [#6869](https://github.com/JabRef/jabref/issues/6869)

### Removed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ private void initialize() {
browseKeystore.disableProperty().bind(viewModel.useSSLProperty().not());
passwordKeystore.disableProperty().bind(viewModel.useSSLProperty().not());
passwordKeystore.textProperty().bindBidirectional(viewModel.keyStorePasswordProperty());
rememberPassword.selectedProperty().bindBidirectional(viewModel.rememberPasswordProperty());

// Must be executed after the initialization of the view, otherwise it doesn't work
Platform.runLater(() -> {
Expand Down

0 comments on commit 4031104

Please sign in to comment.