Daniel Brötzmann pushed to branch master at gajim / gajim
Commits:
d2c65186 by wurstsalat at 2025-07-02T08:42:43+02:00
cfix: Sidebar: Fix listbox item's active state background color
- - - - -
247027ef by wurstsalat at 2025-07-02T08:55:50+02:00
fix: Workspaces: Fix dropping a chat on the new workspace icon
Fixes #12340
- - - - -
2 changed files:
- gajim/data/style/gajim.css
- gajim/gtk/chat_list_stack.py
Changes:
=====================================
gajim/data/style/gajim.css
=====================================
@@ -273,10 +273,11 @@ #SideBarListBox {
.sidebar-listbox-row {
min-width: 63px;
+ padding: 6px 0px 6px 0px;
}
-.sidebar-listbox-row {
- padding: 6px 0px 6px 0px;
+.sidebar-listbox-row:active {
+ background: transparent;
}
.sidebar-listbox-row image {
=====================================
gajim/gtk/chat_list_stack.py
=====================================
@@ -214,9 +214,8 @@ def _toggle_chat_pinned(
def _move_chat_to_workspace(
self, _action: Gio.SimpleAction, params: structs.ChatListEntryParam
) -> None:
-
workspace_id = params.workspace_id
- if not workspace_id:
+ if not workspace_id or workspace_id == "add-workspace":
workspace_id = app.window.add_workspace(switch=False)
source_chatlist = self.get_chatlist(params.source_workspace_id)
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/compare/c1e3b391a9b7f688a78c6cd1593005a221672fa5...247027ef1f300589f02cdec2ec2409c02c963a87
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/compare/c1e3b391a9b7f688a78c6cd1593005a221672fa5...247027ef1f300589f02cdec2ec2409c02c963a87
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]