diff options
author | Kai Huuhko <kai.huuhko@gmail.com> | 2015-03-24 09:06:49 +0200 |
---|---|---|
committer | Kai Huuhko <kai.huuhko@gmail.com> | 2015-03-24 09:06:49 +0200 |
commit | 61b53f24774de8690c6f1e4a8a6e55e30e514714 (patch) | |
tree | 3a0900b887b10c405d155fa40fad962b4a65862e | |
parent | 73b54938c696be49098edf1fd54126d18edb8e32 (diff) |
Elm.Toolbar: Add missing event_info to events
-rw-r--r-- | efl/elementary/toolbar.pyx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/efl/elementary/toolbar.pyx b/efl/elementary/toolbar.pyx index 47abfca..a89f6ea 100644 --- a/efl/elementary/toolbar.pyx +++ b/efl/elementary/toolbar.pyx | |||
@@ -1128,17 +1128,17 @@ cdef class Toolbar(LayoutClass): | |||
1128 | 1128 | ||
1129 | def callback_clicked_add(self, func, *args, **kwargs): | 1129 | def callback_clicked_add(self, func, *args, **kwargs): |
1130 | """When the user clicks on a toolbar item and becomes selected.""" | 1130 | """When the user clicks on a toolbar item and becomes selected.""" |
1131 | self._callback_add("clicked", func, args, kwargs) | 1131 | self._callback_add_full("clicked", _cb_object_item_conv, func, args, kwargs) |
1132 | 1132 | ||
1133 | def callback_clicked_del(self, func): | 1133 | def callback_clicked_del(self, func): |
1134 | self._callback_del("clicked", func) | 1134 | self._callback_del_full("clicked", _cb_object_item_conv, func) |
1135 | 1135 | ||
1136 | def callback_longpressed_add(self, func, *args, **kwargs): | 1136 | def callback_longpressed_add(self, func, *args, **kwargs): |
1137 | """When the toolbar is pressed for a certain amount of time.""" | 1137 | """When the toolbar is pressed for a certain amount of time.""" |
1138 | self._callback_add("longpressed", func, args, kwargs) | 1138 | self._callback_add_full("longpressed", _cb_object_item_conv, func, args, kwargs) |
1139 | 1139 | ||
1140 | def callback_longpressed_del(self, func): | 1140 | def callback_longpressed_del(self, func): |
1141 | self._callback_del("longpressed", func) | 1141 | self._callback_del_full("longpressed", _cb_object_item_conv, func) |
1142 | 1142 | ||
1143 | def callback_language_changed_add(self, func, *args, **kwargs): | 1143 | def callback_language_changed_add(self, func, *args, **kwargs): |
1144 | """When the program language changes.""" | 1144 | """When the program language changes.""" |