Skip to content

Commit

Permalink
Fix fallback icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Drakulix committed Sep 29, 2023
1 parent f051c21 commit dbdeb1a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/app_group.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,15 @@ impl AppGroup {
.find()
.or_else(|| {
freedesktop_icons::lookup("application-default")
.with_size(72)
.with_theme("Cosmic")
.force_svg()
.with_cache()
.find()
})
.or_else(|| {
freedesktop_icons::lookup("application-x-application")
.with_theme("default")
.with_size(128)
.with_cache()
.find()
})
Expand Down

0 comments on commit dbdeb1a

Please sign in to comment.