Skip to content

Commit

Permalink
Merge pull request #201 from torikulhabib/master
Browse files Browse the repository at this point in the history
lit
  • Loading branch information
torikulhabib authored Nov 3, 2022
2 parents 520d2a6 + c623a95 commit 8d66af1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/DownloadRow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ namespace Gabut {
_fileordir = value;
if (value != null && value != "") {
imagefile.gicon = GLib.ContentType.get_icon (value);
rowbus.property_set (MenuItem.ICON_NAME.to_string (), GLib.ContentType.get_generic_icon_name (value));
var genricico = GLib.ContentType.get_generic_icon_name (value);
if (genricico != null) {
rowbus.property_set (MenuItem.ICON_NAME.to_string (), genricico);
}
}
}
}
Expand Down
1 change: 0 additions & 1 deletion src/GabutWindow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,6 @@ namespace Gabut {
}
return true;
});
aria_purge_all ();
}

public void remove_all () {
Expand Down

0 comments on commit 8d66af1

Please sign in to comment.