mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
fix ctrl+space
This commit is contained in:
@@ -888,7 +888,7 @@ export class SlashCommandAutoComplete {
|
|||||||
switch (evt.key) {
|
switch (evt.key) {
|
||||||
case ' ': {
|
case ' ': {
|
||||||
if (evt.ctrlKey) {
|
if (evt.ctrlKey) {
|
||||||
if (this.isActive) {
|
if (this.isActive && this.isReplaceable) {
|
||||||
// ctrl-space to toggle details for selected item
|
// ctrl-space to toggle details for selected item
|
||||||
this.toggleDetails();
|
this.toggleDetails();
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user