We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aca1d9b commit a56977bCopy full SHA for a56977b
1 file changed
src/Startup/Startup.vala
@@ -143,20 +143,6 @@ public class Startup.Plug : Switchboard.SettingsPage {
143
add_app (key_file);
144
}
145
146
- private string? get_path_from_uri (string uri) {
147
- if (uri.has_prefix ("#") || uri.strip () == "")
148
- return null;
149
-
150
- try {
151
- return GLib.Filename.from_uri (uri);
152
- } catch (Error e) {
153
- warning ("Could not convert URI of dropped item to filename");
154
- warning (e.message);
155
- }
156
157
158
159
160
private int sort_function (Gtk.ListBoxRow row1, Gtk.ListBoxRow row2) {
161
var name_1 = ((Widgets.AppRow) row1).app_info.name;
162
var name_2 = ((Widgets.AppRow) row2).app_info.name;
0 commit comments