mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-29 06:57:58 -04:00
14 lines
518 B
Plaintext
14 lines
518 B
Plaintext
$NetBSD: patch-aa,v 1.1 2006/05/08 13:09:39 drochner Exp $
|
|
|
|
--- browser-bookmarks-menu.py.orig 2006-05-05 23:29:03.000000000 +0200
|
|
+++ browser-bookmarks-menu.py
|
|
@@ -543,7 +543,7 @@ def fill_menu(menu, tooltips, contents,
|
|
menu_item.set_sensitive(False)
|
|
else:
|
|
menu_item.connect("activate", url_show, (name, href))
|
|
- if favicons.has_key(href):
|
|
+ if favicons and favicons.has_key(href):
|
|
image = gtk.Image()
|
|
image.set_from_pixbuf(favicons[href])
|
|
menu_item.set_image(image)
|