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
path: root/src
diff options
context:
space:
mode:
authorBrendan Taylor <bct@diffeq.com>2008-10-11 23:58:22 +0400
committerBrendan Taylor <bct@diffeq.com>2008-10-11 23:58:22 +0400
commitaddbc34bc6ab6c4e913f4a6b41ef79a42da2691b (patch)
tree3438a08c095c9b65a6aacc8a756f4aa4ee0b2c99 /src
parent4f55c1826a407ba7adfd9f5a4770c8f104882f5d (diff)
fix tb when closing a message window
Diffstat (limited to 'src')
-rw-r--r--src/message_window.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/message_window.py b/src/message_window.py
index c42e40b88..8ed8f0d0a 100644
--- a/src/message_window.py
+++ b/src/message_window.py
@@ -1084,13 +1084,13 @@ May be useful some day in the future?'''
elif self.mode == self.ONE_MSG_WINDOW_PERACCT:
acct = msg_win.account
elif self.mode == self.ONE_MSG_WINDOW_PERTYPE:
- type_ = msg_win.type
+ type_ = msg_win.type_
pos_x_key = type_ + '-msgwin-x-position'
pos_y_key = type_ + '-msgwin-y-position'
size_width_key = type_ + '-msgwin-width'
size_height_key = type_ + '-msgwin-height'
elif self.mode == self.ONE_MSG_WINDOW_NEVER:
- type_ = msg_win.type
+ type_ = msg_win.type_
size_width_key = type_ + '-msgwin-width'
size_height_key = type_ + '-msgwin-height'
elif self.mode == self.ONE_MSG_WINDOW_ALWAYS_WITH_ROSTER: