mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-08-23 09:46:36 +00:00
Small fixes [release]
This commit is contained in:
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user