-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Theme icons are icon widgets that are created with only their name as arguments. The global static `ICON_LOADER` then searches the currently used icon theme for an icon with that name. If an icon with that name exists with multiple sizes in the theme, the icon with the best size for the widget is chosen.
- Loading branch information
Showing
7 changed files
with
530 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//! A collection of structs to handle themed icons. | ||
mod icon_loader; | ||
|
||
pub use icon_loader::*; |
Oops, something went wrong.