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

Proposed by Michal Hruby
Status: Merged
Approved by: Mikkel Kamstrup Erlandsen
Approved revision: 270
Merged at revision: 270
Proposed branch: lp:~mhr3/unity-lens-applications/fix-932212
Merge into: lp:unity-lens-applications
Diff against target: 16 lines (+2/-2)
1 file modified
src/runner.vala (+2/-2)
To merge this branch: bzr merge lp:~mhr3/unity-lens-applications/fix-932212
Reviewer Review Type Date Requested Status
Mikkel Kamstrup Erlandsen (community) Approve
Review via email: mp+94189@code.launchpad.net

Description of the change

Fixes incorrect icon paths used in the Alt+F2 lens.

Trivial change - no tests

To post a comment you must log in.
Revision history for this message
Mikkel Kamstrup Erlandsen (kamstrup) wrote :

On the one!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/runner.vala'
2--- src/runner.vala 2012-01-24 15:46:54 +0000
3+++ src/runner.vala 2012-02-22 15:16:21 +0000
4@@ -120,11 +120,11 @@
5 var categories = new GLib.List<Unity.Category> ();
6 var icon_dir = File.new_for_path (ICON_PATH);
7 var cat = new Unity.Category (_("Results"),
8- new FileIcon (icon_dir.get_child ("category-installed.svg")));
9+ new FileIcon (icon_dir.get_child ("group-installed.svg")));
10 categories.append (cat);
11
12 cat = new Unity.Category (_("History"),
13- new FileIcon (icon_dir.get_child ("category-available.svg")));
14+ new FileIcon (icon_dir.get_child ("group-available.svg")));
15
16 categories.append (cat);
17

Subscribers

People subscribed via source and target branches