Merge lp:~mhr3/unity-lens-applications/fix-1221804 into lp:unity-lens-applications

Proposed by Michal Hruby
Status: Merged
Approved by: Paweł Stołowski
Approved revision: 366
Merged at revision: 366
Proposed branch: lp:~mhr3/unity-lens-applications/fix-1221804
Merge into: lp:unity-lens-applications
Diff against target: 17 lines (+1/-4)
1 file modified
src/scopes-scope.vala (+1/-4)
To merge this branch: bzr merge lp:~mhr3/unity-lens-applications/fix-1221804
Reviewer Review Type Date Requested Status
PS Jenkins bot (community) continuous-integration Approve
Paweł Stołowski (community) Approve
Review via email: mp+184340@code.launchpad.net

Commit message

Only dim disabled scopes, don't tint enabled ones.

Description of the change

Only dim disabled scopes, don't tint enabled ones.

To post a comment you must log in.
Revision history for this message
Paweł Stołowski (stolowski) wrote :

+1

review: Approve
Revision history for this message
PS Jenkins bot (ps-jenkins) :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/scopes-scope.vala'
2--- src/scopes-scope.vala 2013-08-28 11:43:15 +0000
3+++ src/scopes-scope.vala 2013-09-06 15:58:32 +0000
4@@ -268,12 +268,9 @@
5 ScopesScope.get_default_icon () : Icon.new_for_string (icon_hint);
6 var anno_icon = new AnnotatedIcon (base_icon);
7 anno_icon.size_hint = IconSizeHint.SMALL;
8- // dim disabled icons by decreasing their alpha, tint enabled ones
9- // to brand orange #dd4814
10+ // dim disabled icons by decreasing their alpha
11 if (is_disabled)
12 anno_icon.set_colorize_rgba (1.0, 1.0, 1.0, 0.5);
13- else
14- anno_icon.set_colorize_rgba (0.86666, 0.28235, 0.07843, 1.0);
15 return anno_icon.to_string ();
16 }
17 catch (Error err)

Subscribers

People subscribed via source and target branches