diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index ba92841fb..9cbfea251 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -79,6 +79,8 @@ Changed - Counts can now be used with special keybindings (e.g. with modifiers). This was already implemented for v0.7.0 originally, but got reverted because it caused some issues and then never re-applied. +- Sending a command to an existing instance (via "qutebrowser :reload") now + doesn't mark it as urgent anymore. Deprecated ~~~~~~~~~~ diff --git a/qutebrowser/mainwindow/mainwindow.py b/qutebrowser/mainwindow/mainwindow.py index 6f5204aa4..6bb35735c 100644 --- a/qutebrowser/mainwindow/mainwindow.py +++ b/qutebrowser/mainwindow/mainwindow.py @@ -67,7 +67,8 @@ def get_window(via_ipc, force_window=False, force_tab=False, if force_window: open_target = 'window' if force_tab and open_target == 'window': - open_target = 'tab' # for lack of a better default + # Command sent via IPC + open_target = 'tab-silent' window = None raise_window = False