summaryrefslogtreecommitdiff
path: root/qutebrowser
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-11-28 17:00:29 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-11-28 17:00:29 +0100
commit82e31f4ad69ba5f6c5831a0bb05a2d0d580256bd (patch)
treef47fca2f0e587ff6cdda34d5852d7ae4f3e193ab /qutebrowser
parent8749729bd2820b103cd79ebaed643c83d2607e8e (diff)
downloadqutebrowser-82e31f4ad69ba5f6c5831a0bb05a2d0d580256bd.tar.gz
qutebrowser-82e31f4ad69ba5f6c5831a0bb05a2d0d580256bd.zip
Hide/Ignore some messages
Diffstat (limited to 'qutebrowser')
-rw-r--r--qutebrowser/app.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/qutebrowser/app.py b/qutebrowser/app.py
index c7eefb37b..96e4b9f0f 100644
--- a/qutebrowser/app.py
+++ b/qutebrowser/app.py
@@ -185,7 +185,9 @@ def _init_icon():
filename = ':/icons/qutebrowser-{size}x{size}.png'.format(size=size)
pixmap = QPixmap(filename)
if pixmap.isNull():
- log.init.warning("Failed to load {}".format(filename))
+ # FIXME
+ # log.init.warning("Failed to load {}".format(filename))
+ pass
else:
fallback_icon.addPixmap(pixmap)
icon = QIcon.fromTheme('qutebrowser', fallback_icon)