This was created by this commit:

------------------------------------------------------------
revno: 242.1.5
committer: Michal Hruby <[email protected]>
branch nick: unity-lens-applications
timestamp: Wed 2011-10-05 12:47:44 +0200
message:
  Fix the de-duplication of Installed and Available apps
diff:
=== modified file 'src/daemon.vala'
--- src/daemon.vala     2011-10-05 10:47:11 +0000
+++ src/daemon.vala     2011-10-05 10:47:44 +0000
@@ -626,6 +626,13 @@
         string desktop_id = Path.get_basename (pkginfo.desktop_file);
         string full_path;
 
+        /* S-C uses "app_name:desktop_id.desktop", get rid of the prefix */
+        int colon_pos = desktop_id.index_of (":");
+        if (colon_pos > 0)
+        {
+          desktop_id = desktop_id[colon_pos+1:desktop_id.length];
+        }
+
         AppInfo? app = appmanager.lookup (desktop_id);
         full_path = appmanager.get_path (desktop_id);

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/916201

Title:
  Dash ignores NoDisplay=true if desktop file name contains a colon

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-lens-applications/+bug/916201/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to