Skip to content

Commit

Permalink
Merge pull request #573 from domialex/features/title-fix
Browse files Browse the repository at this point in the history
Fixed hotkeys not working when Sidekick is in focus
  • Loading branch information
domialex authored Apr 18, 2021
2 parents 58d8d13 + c3e3534 commit 4ca37b4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ public Task Close()
public void SetTitle(string title)
{
Title = title;
view.Browser.SetTitle(title ?? "Sidekick");
// Make sure the title is always Sidekick. For keybind management we are watching for this value.
// view.Browser.SetTitle(title ?? "Sidekick");
}
}
}

0 comments on commit 4ca37b4

Please sign in to comment.