summaryrefslogtreecommitdiff
path: root/qutebrowser/misc/msgbox.py
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-12-03 13:48:40 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-12-03 13:50:57 +0100
commitbbb44f6e5056ab31f945ec7fb48106c40559a836 (patch)
tree2edfc7cf1859fc0cdcfe304bdb8eda5049c0732f /qutebrowser/misc/msgbox.py
parent26d308d95d54abf68207d00002c0c1cd3d142ba4 (diff)
downloadqutebrowser-bbb44f6e5056ab31f945ec7fb48106c40559a836.tar.gz
qutebrowser-bbb44f6e5056ab31f945ec7fb48106c40559a836.zip
Add some missing docstring params
Diffstat (limited to 'qutebrowser/misc/msgbox.py')
-rw-r--r--qutebrowser/misc/msgbox.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/qutebrowser/misc/msgbox.py b/qutebrowser/misc/msgbox.py
index 9d5fbf601..4271c2639 100644
--- a/qutebrowser/misc/msgbox.py
+++ b/qutebrowser/misc/msgbox.py
@@ -42,6 +42,7 @@ def msgbox(parent, title, text, *, icon, buttons=QMessageBox.Ok,
parent: The parent to set for the message box.
title: The title to set.
text: The text to set.
+ icon: The QIcon to show in the box.
buttons: The buttons to set (QMessageBox::StandardButtons)
on_finished: A slot to connect to the 'finished' signal.
plain_text: Whether to force plain text (True) or rich text (False).