Small fixes [release]

This commit is contained in:
crschnick
2025-07-20 05:16:46 +00:00
parent c1b60cf379
commit c6e8d65d56
3 changed files with 5 additions and 5 deletions
@@ -330,7 +330,7 @@ public class AppMainWindow {
if (state.maximized) {
stage.setMaximized(true);
stage.setWidth(1280);
stage.setHeight(760);
stage.setHeight(780);
} else {
stage.setX(state.windowX);
stage.setY(state.windowY);
@@ -344,7 +344,7 @@ public class AppMainWindow {
stage.setHeight(600);
} else {
stage.setWidth(1280);
stage.setHeight(760);
stage.setHeight(780);
}
} else {
stage.setX(312);
@@ -63,12 +63,12 @@ public class PasswordManagerIdentityStore extends IdentityStore
if (r.getUsername() == null) {
throw ErrorEventFactory.expected(
new UnsupportedOperationException("Identity " + key + " does not include username"));
new UnsupportedOperationException("Identity " + key + " does not provide a username"));
}
if (r.getPassword() == null) {
throw ErrorEventFactory.expected(
new UnsupportedOperationException("Identity " + key + " does not include a password"));
new UnsupportedOperationException("Identity " + key + " does not provide a password"));
}
setCache("lastQueried", Instant.now());
+1 -1
View File
@@ -1 +1 @@
17.0
17.1