Daniel Brötzmann pushed to branch master at gajim / gajim
Commits:
dcb304c5 by wurstsalat at 2023-05-07T21:00:57+02:00
cfix: ChatList: Use dim color for join icon
- - - - -
1 changed file:
- gajim/gtk/chat_list_row.py
Changes:
=====================================
gajim/gtk/chat_list_row.py
=====================================
@@ -549,11 +549,14 @@ def _update_joined_state(self) -> None:
self._ui.connection_icon.get_style_context().remove_class('spin')
self._ui.connection_icon.get_style_context().remove_class(
'warning-color')
+ self._ui.connection_icon.get_style_context().remove_class(
+ 'dim-label')
if self.contact.is_joining:
self._ui.connection_icon.set_from_icon_name(
'feather-refresh-cw-symbolic', Gtk.IconSize.MENU)
self._ui.connection_icon.get_style_context().add_class('spin')
+ self._ui.connection_icon.get_style_context().add_class('dim-label')
self._ui.connection_icon.set_tooltip_text(_('Joining Group Chat…'))
self._ui.connection_icon.show()
elif (self.contact.is_not_joined or
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/dcb304c5a7485733959f21866219ff7b03b1f7e3
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/dcb304c5a7485733959f21866219ff7b03b1f7e3
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