Base: Add GML file type icon

Add 16x16 and 32x32 icons for GML files.
This commit is contained in:
electrikmilk 2022-02-07 01:59:11 -05:00 committed by Linus Groh
parent b0e5609b88
commit e7b8498a4a
Notes: sideshowbarker 2024-07-17 19:40:54 +09:00
3 changed files with 1 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -387,8 +387,7 @@ NonnullRefPtr<GUI::Menu> HackStudioWidget::create_project_tree_view_context_menu
{
m_new_file_actions.append(create_new_file_action("C++ Source File", "/res/icons/16x16/filetype-cplusplus.png", "cpp"));
m_new_file_actions.append(create_new_file_action("C++ Header File", "/res/icons/16x16/filetype-header.png", "h"));
// FIXME: Create a file icon for GML files
m_new_file_actions.append(create_new_file_action("GML File", "/res/icons/16x16/new.png", "gml"));
m_new_file_actions.append(create_new_file_action("GML File", "/res/icons/16x16/filetype-gml.png", "gml"));
m_new_file_actions.append(create_new_file_action("JavaScript Source File", "/res/icons/16x16/filetype-javascript.png", "js"));
m_new_file_actions.append(create_new_file_action("HTML File", "/res/icons/16x16/filetype-html.png", "html"));
// FIXME: Create a file icon for CSS files