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 524188 - Inconsistent mouseover behaviour in System Monitor Preferences
Inconsistent mouseover behaviour in System Monitor Preferences
Status: RESOLVED FIXED
Product: system-monitor
Classification: Core
Component: general
2.22.x
Other Linux
: Normal minor
: ---
Assigned To: System-monitor maintainers
System-monitor maintainers
Depends on:
Blocks:
 
 
Reported: 2008-03-24 19:52 UTC by Pedro Villavicencio
Modified: 2011-11-11 10:03 UTC
See Also:
GNOME target: ---
GNOME version: 2.21/2.22


Attachments
patch as an attachment (896 bytes, patch)
2008-04-06 21:33 UTC, Toby Dacre
none Details | Review
Make preference's processes tab check boxes consistent. (961 bytes, patch)
2011-03-04 13:14 UTC, Chris Kühl
committed Details | Review

Description Pedro Villavicencio 2008-03-24 19:52:14 UTC
This bug has been filed here:

https://bugs.edge.launchpad.net/ubuntu/+source/gnome-system-monitor/+bug/203371

"Open the preferences window. Move your mouse over the checkbox entries in the upper half of the "Processes" tab.

The middle checkbox entry "Alert berfore ending or killing processes" will only be highlighted around the checkbox and the label whereas for the other two entries the whole line will be highlighted (the way it should be).

Same for "Show all filesystems" in the "File Systems" tab."

"
Following fixed it for me:

@@ -579,7 +579,7 @@
           procdata->config.show_kill_warning);
  g_signal_connect (G_OBJECT (check_button), "toggled",
        G_CALLBACK (show_kill_dialog_toggled), procdata);
- gtk_box_pack_start (GTK_BOX (hbox2), check_button, FALSE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (hbox2), check_button, TRUE, TRUE, 0);

@@ -725,7 +725,7 @@
           procdata->config.show_all_fs);
  g_signal_connect (G_OBJECT (check_button), "toggled",
        G_CALLBACK (show_all_fs_toggled), procdata);
- gtk_box_pack_start (GTK_BOX (hbox2), check_button, FALSE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (hbox2), check_button, TRUE, TRUE, 0);

I know that this kind of problems have the lowest priority, but a desktop OS should really have a polished GUI.
"

Thanks,
Comment 1 Toby Dacre 2008-04-06 21:33:37 UTC
Created attachment 108739 [details] [review]
patch as an attachment

I can confirm this is a issue and the patch in the original report fixes it.

I've put that patch as an attachment
Comment 2 Chris Kühl 2011-03-04 13:14:07 UTC
The following fix has been pushed:
19474f3 Make preference's processes tab check boxes consistent.
Comment 3 Chris Kühl 2011-03-04 13:14:11 UTC
Created attachment 182459 [details] [review]
Make preference's processes tab check boxes consistent.

* Now the expand and fill are all the same.