Skip to content

Commit

Permalink
AppSettingsView: use AppInfo description (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
danirabbit authored Mar 31, 2024
1 parent 2d45c30 commit f6d767e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Permissions/Backend/App.vala
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public class Permissions.Backend.App : GLib.Object {
public Flatpak.InstalledRef installed_ref { get; construct; }
public string id { get; private set; }
public string name { get; private set; }
public string? description { get; private set; default = null; }
public Icon icon { get; private set; }
public GenericArray<Backend.PermissionSettings> settings;

Expand All @@ -41,6 +42,7 @@ public class Permissions.Backend.App : GLib.Object {
if (appinfo != null) {
name = appinfo.get_name ();
icon = appinfo.get_icon () ?? new ThemedIcon ("application-default-icon");
description = appinfo.get_description ();
} else {
icon = new ThemedIcon ("application-default-icon");
name = id;
Expand Down
1 change: 1 addition & 0 deletions src/Permissions/Widgets/AppSettingsView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ public class Permissions.Widgets.AppSettingsView : Switchboard.SettingsPage {

update_property (Gtk.AccessibleProperty.LABEL, _("%s permissions").printf (selected_app.name), -1);
title = selected_app.name;
description = selected_app.description;
icon = selected_app.icon;
}

Expand Down

0 comments on commit f6d767e

Please sign in to comment.