https://bugs.kde.org/show_bug.cgi?id=475722
--- Comment #4 from fanzhuyi...@gmail.com --- The code causing the bug is located at https://invent.kde.org/plasma/libksysguard/-/blob/23a1e84e9ea3de460c41e57ee072fd5459712b6e/processui/ProcessModel.cpp#L2360 ``` #if HAVE_X11 if (d->mIsX11) { headings << i18nc("process heading", "X11 Memory"); headings << i18nc("process heading", "Window Title"); } #endif ``` where the headings "must be in the same order that they are in the header file". When the program is launched under wayland, these two headings would be absent. Thus, the meaning of the headings and the text will be offset by two in the remaining headings, which makes the text "Total Memory" actually refer to the cgroup column. -- You are receiving this mail because: You are watching all bug changes.