Merge lp:~timchen119/unity-control-center/unity-control-center.lp1417034.trusty into lp:unity-control-center/14.04

Proposed by Tim Chen
Status: Merged
Approved by: Sebastien Bacher
Approved revision: 12781
Merged at revision: 12781
Proposed branch: lp:~timchen119/unity-control-center/unity-control-center.lp1417034.trusty
Merge into: lp:unity-control-center/14.04
Diff against target: 16 lines (+3/-3)
1 file modified
panels/info/cc-info-panel.c (+3/-3)
To merge this branch: bzr merge lp:~timchen119/unity-control-center/unity-control-center.lp1417034.trusty
Reviewer Review Type Date Requested Status
Sebastien Bacher Approve
Tim Chen (community) Needs Resubmitting
Review via email: mp+255462@code.launchpad.net

This proposal supersedes a proposal from 2015-04-07.

Commit message

Set higher priority of glxinfo's result then Xorg's log for
"Details" -> "Overview" -> "Graphics" info in control center.
(LP: #1417034)

Description of the change

  * Set higher priority of glxinfo's result then Xorg's log for
    "Details" -> "Overview" -> "Graphics" info in control center.
    (LP: #1417034)

To post a comment you must log in.
Revision history for this message
Sebastien Bacher (seb128) wrote : Posted in a previous version of this proposal

Thanks Tim, could you proposed the change against
lp:unity-control-center/14.04 so we can use CI for the landing?

review: Needs Fixing
Revision history for this message
Tim Chen (timchen119) wrote :

Done, now targeted lp:unity-control-center/14.04 and proposal resubmitted. Thanks.

review: Needs Resubmitting
Revision history for this message
Sebastien Bacher (seb128) wrote :

thanks

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'panels/info/cc-info-panel.c'
--- panels/info/cc-info-panel.c 2014-03-14 14:43:48 +0000
+++ panels/info/cc-info-panel.c 2015-04-08 06:51:21 +0000
@@ -450,10 +450,10 @@
450 result->glx_renderer = get_graphics_data_glx_renderer ();450 result->glx_renderer = get_graphics_data_glx_renderer ();
451 result->xorg_vesa_hardware = get_graphics_data_xorg_vesa_hardware ();451 result->xorg_vesa_hardware = get_graphics_data_xorg_vesa_hardware ();
452452
453 if (result->xorg_vesa_hardware != NULL)453 if (result->glx_renderer != NULL)
454 result->hardware_string = result->glx_renderer;
455 else if (result->xorg_vesa_hardware != NULL)
454 result->hardware_string = result->xorg_vesa_hardware;456 result->hardware_string = result->xorg_vesa_hardware;
455 else if (result->glx_renderer != NULL)
456 result->hardware_string = result->glx_renderer;
457 else457 else
458 result->hardware_string = _("Unknown");458 result->hardware_string = _("Unknown");
459459

Subscribers

People subscribed via source and target branches