Base: Update some icons for color, quality and consistency
And remove unused filetypes
Author: https://github.com/thankyouverycool Commit: https://github.com/SerenityOS/serenity/commit/4ebfdfdc055 Pull-request: https://github.com/SerenityOS/serenity/pull/5513
Before Width: | Height: | Size: 175 B After Width: | Height: | Size: 275 B |
BIN
Base/res/icons/16x16/app-hex-editor.png
Normal file
After Width: | Height: | Size: 192 B |
Before Width: | Height: | Size: 302 B |
Before Width: | Height: | Size: 300 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 379 B |
Before Width: | Height: | Size: 310 B After Width: | Height: | Size: 270 B |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 165 B |
Before Width: | Height: | Size: 247 B After Width: | Height: | Size: 252 B |
Before Width: | Height: | Size: 490 B After Width: | Height: | Size: 374 B |
BIN
Base/res/icons/32x32/app-hex-editor.png
Normal file
After Width: | Height: | Size: 383 B |
Before Width: | Height: | Size: 422 B |
Before Width: | Height: | Size: 371 B After Width: | Height: | Size: 350 B |
Before Width: | Height: | Size: 510 B |
Before Width: | Height: | Size: 432 B After Width: | Height: | Size: 433 B |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 321 B |
Before Width: | Height: | Size: 363 B After Width: | Height: | Size: 365 B |
|
@ -5,5 +5,5 @@ set(SOURCES
|
|||
main.cpp
|
||||
)
|
||||
|
||||
serenity_app(HexEditor ICON app-hexeditor)
|
||||
serenity_app(HexEditor ICON app-hex-editor)
|
||||
target_link_libraries(HexEditor LibGUI)
|
||||
|
|
|
@ -227,7 +227,7 @@ HexEditorWidget::HexEditorWidget()
|
|||
}));
|
||||
|
||||
auto& help_menu = menubar->add_menu("Help");
|
||||
help_menu.add_action(GUI::CommonActions::make_about_action("Hex Editor", GUI::Icon::default_icon("app-hexeditor"), window()));
|
||||
help_menu.add_action(GUI::CommonActions::make_about_action("Hex Editor", GUI::Icon::default_icon("app-hex-editor"), window()));
|
||||
|
||||
GUI::Application::the()->set_menubar(move(menubar));
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@ int main(int argc, char** argv)
|
|||
return 1;
|
||||
}
|
||||
|
||||
auto app_icon = GUI::Icon::default_icon("app-hexeditor");
|
||||
auto app_icon = GUI::Icon::default_icon("app-hex-editor");
|
||||
|
||||
auto window = GUI::Window::construct();
|
||||
window->set_title("Hex Editor");
|
||||
|
|