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 01:56:18 +0300
committerPhilipp Hörist <forenjunkie@chello.at>2017-10-03 01:59:00 +0300
commitd79a211b0cf611eaa25ad462b64a14e18b140244 (patch)
treeb80787096471bde82247bb0a7e909361ec21f307
parentbb844593988036bf681a16e7d547731c6f12b8de (diff)
[tictactoe] Adapt to UI changes in Gajim
-rw-r--r--tictactoe/plugin.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/tictactoe/plugin.py b/tictactoe/plugin.py
index b9ec862..8a5a483 100644
--- a/tictactoe/plugin.py
+++ b/tictactoe/plugin.py
@@ -192,11 +192,7 @@ class Base(object):
factory.add_default()
img.set_from_stock('tictactoe', 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_tictactoe_button_toggled)
self.chat_control.handlers[id_] = self.button
self.button.show()