summaryrefslogtreecommitdiff
path: root/qutebrowser
diff options
context:
space:
mode:
authorlyeoh <tomentosus@gmail.com>2021-10-19 17:39:52 -0500
committerlyeoh <tomentosus@gmail.com>2021-11-01 15:13:58 -0500
commita3af87958ed4223405127c38fc3877b69d8bf0ca (patch)
treeed733aaf7a54542e65f4a984b4e7bc008cac84a9 /qutebrowser
parentadff7f95a402d20b17b0950055a9ee35c7d708ad (diff)
downloadqutebrowser-a3af87958ed4223405127c38fc3877b69d8bf0ca.tar.gz
qutebrowser-a3af87958ed4223405127c38fc3877b69d8bf0ca.zip
Add keyword for time delay argument
Diffstat (limited to 'qutebrowser')
-rw-r--r--qutebrowser/mainwindow/tabbedbrowser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qutebrowser/mainwindow/tabbedbrowser.py b/qutebrowser/mainwindow/tabbedbrowser.py
index 2bff8508d..72403b49b 100644
--- a/qutebrowser/mainwindow/tabbedbrowser.py
+++ b/qutebrowser/mainwindow/tabbedbrowser.py
@@ -224,7 +224,7 @@ class TabbedBrowser(QWidget):
# WORKAROUND for recentlyAudibleChanged being emitted without delay
# from the moment that the audio is paused
self._on_audio_changed_throttle = throttle.Throttle(
- self._on_audio_changed, 2000, parent=self)
+ self._on_audio_changed, delay_ms=2000, parent=self)
# load_finished instead of load_started as WORKAROUND for
# https://bugreports.qt.io/browse/QTBUG-65223