Base: Add new icons for fonts and File Manager

This commit is contained in:
thankyouverycool 2021-02-24 16:22:15 -05:00 committed by Andreas Kling
parent bb9cf083c4
commit 42717b5b79
Notes: sideshowbarker 2024-07-18 21:56:39 +09:00
9 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,6 @@
[Icons]
cplusplus=*.cpp,*.cxx,*.cc,*.c++
font=*.font
form=*.frm
header=*.h,*.hpp,*.hxx,*.hh,*.h++
html=*.html,*.htm
@ -16,3 +17,4 @@ python=*.py
sound=*.wav
spreadsheet=*.sheets
text=*.txt
truetype=*.ttf

Binary file not shown.

After

Width:  |  Height:  |  Size: 487 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 281 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 339 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 352 B

View File

@ -9,5 +9,5 @@ set(SOURCES
PropertiesWindow.cpp
)
serenity_app(FileManager ICON filetype-folder)
serenity_app(FileManager ICON app-file-manager)
target_link_libraries(FileManager LibGUI LibDesktop)

View File

@ -731,7 +731,7 @@ int run_in_windowed_mode(RefPtr<Core::ConfigFile> config, String initial_locatio
go_menu.add_action(go_to_location_action);
auto& help_menu = menubar->add_menu("Help");
help_menu.add_action(GUI::CommonActions::make_about_action("File Manager", GUI::Icon::default_icon("filetype-folder"), window));
help_menu.add_action(GUI::CommonActions::make_about_action("File Manager", GUI::Icon::default_icon("app-file-manager"), window));
GUI::Application::the()->set_menubar(move(menubar));