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

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <forenjunkie@chello.at>2017-10-03 02:01:32 +0300
committerPhilipp Hörist <forenjunkie@chello.at>2017-10-03 02:01:32 +0300
commita56f53812210a54b4d20e7f31cef45c420532629 (patch)
treee764f5f72d99466980ce9630fe7170110c03c507
parent800aed51dceae59214324a0ca1e02ab0c498518a (diff)
[whiteboard] Adapt to UI changes in Gajim
-rw-r--r--whiteboard/plugin.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/whiteboard/plugin.py b/whiteboard/plugin.py
index 18d7b70..38199c4 100644
--- a/whiteboard/plugin.py
+++ b/whiteboard/plugin.py
@@ -296,11 +296,7 @@ class Base(object):
factory.add_default()
img.set_from_stock('whiteboard', Gtk.IconSize.MENU)
self.button.set_image(img)
- send_button = self.chat_control.xml.get_object('send_button')
- send_button_pos = actions_hbox.child_get_property(send_button,
- 'position')
actions_hbox.pack_start(self.button, False, False, 0)
- actions_hbox.reorder_child(self.button, send_button_pos - 1)
id_ = self.button.connect('toggled', self.on_whiteboard_button_toggled)
self.chat_control.handlers[id_] = self.button
self.button.show()