Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrendan Taylor <bct@diffeq.com>2008-07-09 06:03:57 +0400
committerBrendan Taylor <bct@diffeq.com>2008-07-09 06:03:57 +0400
commit2e97cc3adb521f5de263410add851e2da09ccf48 (patch)
tree76cafd8be75e4b6109007261a42cbb482c6e6767
parentc99048b02fc0063662f8310e5707f62f90778232 (diff)
snagged tango security icons from gnome-icon-theme
-rw-r--r--data/pixmaps/security-high.pngbin0 -> 790 bytes
-rw-r--r--data/pixmaps/security-low.pngbin0 -> 799 bytes
-rw-r--r--src/chat_control.py4
3 files changed, 2 insertions, 2 deletions
diff --git a/data/pixmaps/security-high.png b/data/pixmaps/security-high.png
new file mode 100644
index 000000000..8f229a037
--- /dev/null
+++ b/data/pixmaps/security-high.png
Binary files differ
diff --git a/data/pixmaps/security-low.png b/data/pixmaps/security-low.png
new file mode 100644
index 000000000..538145319
--- /dev/null
+++ b/data/pixmaps/security-low.png
Binary files differ
diff --git a/src/chat_control.py b/src/chat_control.py
index 86dca43f5..7387c034f 100644
--- a/src/chat_control.py
+++ b/src/chat_control.py
@@ -1383,10 +1383,10 @@ class ChatControl(ChatControlBase):
if authenticated:
authenticated_string = ' and authenticated'
- self.lock_image.set_from_stock('gtk-dialog-authentication', 1)
+ self.lock_image.set_from_file(os.path.join(gajim.DATA_DIR, 'pixmaps', 'security-high.png'))
else:
authenticated_string = ' and NOT authenticated'
- self.lock_image.set_from_stock('gtk-dialog-warning', 1)
+ self.lock_image.set_from_file(os.path.join(gajim.DATA_DIR, 'pixmaps', 'security-low.png'))
tooltip = '%s encryption %s active%s.\n' \
'Your chat session %s be logged.' % \