mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Adds socketio event for Ctrl+C cancel, style fixes
This commit is contained in:
parent
bfbae09a9c
commit
162e420e9c
@ -800,6 +800,7 @@ class InvokeAIWebServer:
|
|||||||
)
|
)
|
||||||
|
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
|
self.socketio.emit("processingCanceled")
|
||||||
raise
|
raise
|
||||||
except CanceledException:
|
except CanceledException:
|
||||||
self.socketio.emit("processingCanceled")
|
self.socketio.emit("processingCanceled")
|
||||||
|
File diff suppressed because one or more lines are too long
2
frontend/dist/index.html
vendored
2
frontend/dist/index.html
vendored
@ -7,7 +7,7 @@
|
|||||||
<title>InvokeAI - A Stable Diffusion Toolkit</title>
|
<title>InvokeAI - A Stable Diffusion Toolkit</title>
|
||||||
<link rel="shortcut icon" type="icon" href="./assets/favicon.0d253ced.ico" />
|
<link rel="shortcut icon" type="icon" href="./assets/favicon.0d253ced.ico" />
|
||||||
<script type="module" crossorigin src="./assets/index.01c74d27.js"></script>
|
<script type="module" crossorigin src="./assets/index.01c74d27.js"></script>
|
||||||
<link rel="stylesheet" href="./assets/index.3237bca3.css">
|
<link rel="stylesheet" href="./assets/index.61df3eff.css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
.image-gallery-area {
|
.image-gallery-area {
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
height: 100%;
|
|
||||||
&[data-pinned='false'] {
|
&[data-pinned='false'] {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
@ -154,7 +154,6 @@
|
|||||||
// from https://css-tricks.com/a-grid-of-logos-in-squares/
|
// from https://css-tricks.com/a-grid-of-logos-in-squares/
|
||||||
.image-gallery {
|
.image-gallery {
|
||||||
display: grid;
|
display: grid;
|
||||||
// grid-template-columns: repeat(auto-fill, minmax(80px, auto));
|
|
||||||
grid-gap: 0.5rem;
|
grid-gap: 0.5rem;
|
||||||
.hoverable-image {
|
.hoverable-image {
|
||||||
padding: 0.5rem;
|
padding: 0.5rem;
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
.workarea-main {
|
.workarea-main {
|
||||||
display: flex;
|
display: flex;
|
||||||
column-gap: 0.5rem;
|
column-gap: 0.5rem;
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
.workarea-options-panel {
|
.workarea-options-panel {
|
||||||
width: $options-bar-max-width;
|
width: $options-bar-max-width;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user