fix: Search takes too much priority from cmd+k trigger

This commit is contained in:
Tom Moor
2022-02-26 11:47:48 -08:00
parent 7f05fe0127
commit 6cbc30172c
7 changed files with 26 additions and 20 deletions

View File

@@ -40,7 +40,7 @@ class UiStore {
observingUserId: string | undefined;
@observable
showModKHint = false;
commandBarOpenedFromSidebar = false;
@observable
progressBarVisible = false;
@@ -215,13 +215,13 @@ class UiStore {
};
@action
enableModKHint = () => {
this.showModKHint = true;
commandBarOpened = () => {
this.commandBarOpenedFromSidebar = true;
};
@action
disableModKHint = () => {
this.showModKHint = false;
commandBarClosed = () => {
this.commandBarOpenedFromSidebar = false;
};
@action