diff options
author | 2013-03-18 08:45:43 +0000 | |
---|---|---|
committer | 2013-03-18 08:45:43 +0000 | |
commit | 28dd73d7835dfd7be093e557386649d147042026 (patch) | |
tree | a113334b6c422cd470f24a5fa64f3e7f2491e34d /net-im/gajim/files | |
parent | [bump] dev-perl/Olson-Abbreviations-0.40.0 (diff) | |
download | historical-28dd73d7835dfd7be093e557386649d147042026.tar.gz historical-28dd73d7835dfd7be093e557386649d147042026.tar.bz2 historical-28dd73d7835dfd7be093e557386649d147042026.zip |
net-im/gajim: Version BUmp; include backport of last tab closed fix, #461248
Package-Manager: portage-2.2.0_alpha166/cvs/Linux x86_64
Manifest-Sign-Key: 0x70EB7916
Diffstat (limited to 'net-im/gajim/files')
-rw-r--r-- | net-im/gajim/files/gajim-0.15.3-roster.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/net-im/gajim/files/gajim-0.15.3-roster.patch b/net-im/gajim/files/gajim-0.15.3-roster.patch new file mode 100644 index 000000000000..9b3498daf591 --- /dev/null +++ b/net-im/gajim/files/gajim-0.15.3-roster.patch @@ -0,0 +1,31 @@ +Index: src/common/config.py
+===================================================================
+--- src/common/config.py (revision 14330)
++++ src/common/config.py (revision 14450)
+@@ -163,4 +163,5 @@
+ 'roster_width': [ opt_int, 200 ],
+ 'roster_height': [ opt_int, 400 ],
++ 'roster_hpaned_position': [opt_int, 200],
+ 'history_window_width': [ opt_int, 650 ],
+ 'history_window_height': [ opt_int, 450 ],
+Index: src/message_window.py
+===================================================================
+--- src/message_window.py (revision 14114)
++++ src/message_window.py (revision 14450)
+@@ -1000,5 +1000,5 @@
+ win.resize(size[0], size[1])
+ if win.parent_paned:
+- win.parent_paned.set_position(parent_size[0])
++ win.parent_paned.set_position(gajim.config.get('roster_hpaned_position'))
+
+ def _position_window(self, win, acct, type_):
+Index: src/roster_window.py
+===================================================================
+--- src/roster_window.py (revision 14436)
++++ src/roster_window.py (revision 14450)
+@@ -4492,4 +4492,5 @@
+ roster_width = pane.get_child1().allocation.width
+ gajim.config.set('roster_width', roster_width)
++ gajim.config.set('roster_hpaned_position', pane.get_position())
+
+ ################################################################################
|