After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 365101 - Column customizations not remembered
Column customizations not remembered
Status: RESOLVED FIXED
Product: system-monitor
Classification: Core
Component: general
2.16.x
Other Linux
: Normal normal
: ---
Assigned To: System-monitor maintainers
System-monitor maintainers
Depends on: 75128
Blocks:
 
 
Reported: 2006-10-25 20:10 UTC by Sebastien Bacher
Modified: 2011-11-11 10:03 UTC
See Also:
GNOME target: ---
GNOME version: 2.15/2.16


Attachments
Uses a different function to find security_context column (597 bytes, patch)
2011-04-08 09:40 UTC, Peter Stuifzand
committed Details | Review
Fix to remember custom column ordering. (968 bytes, patch)
2011-06-13 21:50 UTC, Chris Kühl
committed Details | Review

Description Sebastien Bacher 2006-10-25 20:10:25 UTC
That bug has been opened on https://launchpad.net/distros/ubuntu/+source/gnome-system-monitor/+bug/68213

"1. remove the /apps/procman gconf keys from your configuration and restart gconfd. This helps to reproduce the issue
2. Start up g-s-m
3. configure the columns in preferences. Check the "arguments" column
4. Reorder the memory and the arguments column so that memory is on the left.
5. Quit g-s-m
6. Reopen g-s-m
7. Note the lack of the memory column"

It happens with 2.16.1 on edgy
Comment 1 Mike Rooney 2008-11-28 21:09:55 UTC
Since this bug is over two years old I thought it might be useful to add that it still affects Gnome 2.24 on Intrepid. I don't know if the Version/Gnome version should be changed.
Comment 2 Chris Wilson 2011-01-23 21:15:18 UTC
Has there been any progress on the bug yet?

There is a comment on the Launchpad bug detailing a workaround that may shed some light on the cause of this issue.
Comment 3 Peter Stuifzand 2011-04-08 09:40:21 UTC
Created attachment 185507 [details] [review]
Uses a different function to find security_context column

Explanation:

When can_show_security_context_column() returns false, column COL_SECURITYCONTEXT will be hidden. However the wrong column is found, because the wrong function is used. Changing gtk_tree_view_get_column to my_gtk_tree_view_get_column_with_sort_column_id fixes this bug.
Comment 4 Chris Kühl 2011-06-13 21:49:56 UTC
Thanks.

The following fix has been pushed:
dd0e346 Fix to remember custom column ordering.
Comment 5 Chris Kühl 2011-06-13 21:50:03 UTC
Created attachment 189856 [details] [review]
Fix to remember custom column ordering.