Daniel Brötzmann pushed to branch master at gajim / gajim
Commits:
580cfc9e by wurstsalat at 2022-06-12T21:17:45+02:00
imprv: StatusMessageSelector: Enable emoji completion
- - - - -
197298f1 by wurstsalat at 2022-06-12T21:18:20+02:00
imprv: CreateGroupchatWindow: Enable emoji completion for description
- - - - -
2 changed files:
- gajim/data/gui/groupchat_creation.ui
- gajim/gtk/status_message_selector.py
Changes:
=====================================
gajim/data/gui/groupchat_creation.ui
=====================================
@@ -97,6 +97,7 @@
<property name="visible">True</property>
<property name="can-focus">True</property>
<property name="show-emoji-icon">True</property>
+ <property name="enable-emoji-completion">True</property>
</object>
<packing>
<property name="left-attach">1</property>
=====================================
gajim/gtk/status_message_selector.py
=====================================
@@ -41,6 +41,7 @@ def __init__(self, account: Optional[str] = None) -> None:
self._entry = Gtk.Entry()
self._entry.set_size_request(200, -1)
self._entry.set_property('show-emoji-icon', True)
+ self._entry.set_property('enable-emoji-completion', True)
self._entry.set_placeholder_text(_('Status message…'))
self._entry.connect('activate', self._set_status_message)
self._entry.connect('changed', self._on_changed)
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/compare/17ae6e75b4fb7785377c31774d44922016163ece...197298f112ad35c1de7d73ffaa185180ebea51dd
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/compare/17ae6e75b4fb7785377c31774d44922016163ece...197298f112ad35c1de7d73ffaa185180ebea51dd
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list
[email protected]
https://lists.gajim.org/cgi-bin/listinfo/commits