mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
TextEditor: Tweak 16x16 icon
In keeping with the slightly-higher-contrast theme.
This commit is contained in:
parent
14edd67bcc
commit
bc1ec588f0
9 changed files with 6 additions and 6 deletions
|
@ -719,7 +719,7 @@ int run_in_windowed_mode(RefPtr<Core::ConfigFile> config, String initial_locatio
|
|||
copy_action->set_enabled(!selection.is_empty());
|
||||
};
|
||||
|
||||
auto open_in_text_editor_action = GUI::Action::create("Open in TextEditor...", Gfx::Bitmap::load_from_file("/res/icons/TextEditor16.png"), [&](auto&) {
|
||||
auto open_in_text_editor_action = GUI::Action::create("Open in TextEditor...", Gfx::Bitmap::load_from_file("/res/icons/16x16/app-text-editor.png"), [&](auto&) {
|
||||
pid_t child;
|
||||
for (auto& path : selected_file_paths()) {
|
||||
const char* argv[] = { "TextEditor", path.characters(), nullptr };
|
||||
|
|
|
@ -452,7 +452,7 @@ TextEditorWidget::TextEditorWidget()
|
|||
|
||||
auto& help_menu = menubar->add_menu("Help");
|
||||
help_menu.add_action(GUI::Action::create("About", [&](auto&) {
|
||||
GUI::AboutDialog::show("Text Editor", Gfx::Bitmap::load_from_file("/res/icons/32x32/app-texteditor.png"), window());
|
||||
GUI::AboutDialog::show("Text Editor", Gfx::Bitmap::load_from_file("/res/icons/32x32/app-text-editor.png"), window());
|
||||
}));
|
||||
|
||||
GUI::Application::the()->set_menubar(move(menubar));
|
||||
|
|
|
@ -60,7 +60,7 @@ int main(int argc, char** argv)
|
|||
text_widget.open_sesame(argv[1]);
|
||||
|
||||
window->show();
|
||||
window->set_icon(Gfx::Bitmap::load_from_file("/res/icons/TextEditor16.png"));
|
||||
window->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/app-text-editor.png"));
|
||||
|
||||
return app->exec();
|
||||
}
|
||||
|
|
|
@ -4,8 +4,8 @@ Executable=/bin/TextEditor
|
|||
Category=Utilities
|
||||
|
||||
[Icons]
|
||||
16x16=/res/icons/TextEditor16.png
|
||||
32x32=/res/icons/32x32/app-texteditor.png
|
||||
16x16=/res/icons/16x16/app-text-editor.png
|
||||
32x32=/res/icons/32x32/app-text-editor.png
|
||||
|
||||
[Launcher]
|
||||
FileTypes=txt,md,html,htm,js,json,ini
|
||||
|
|
BIN
Base/res/icons/16x16/app-text-editor.png
Normal file
BIN
Base/res/icons/16x16/app-text-editor.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 160 B |
Before Width: | Height: | Size: 371 B After Width: | Height: | Size: 371 B |
Binary file not shown.
Before Width: | Height: | Size: 454 B |
Binary file not shown.
Before Width: | Height: | Size: 276 B |
|
@ -480,7 +480,7 @@ int main(int argc, char** argv)
|
|||
});
|
||||
|
||||
auto add_editor_action = GUI::Action::create("Add new editor", { Mod_Ctrl | Mod_Alt, Key_E },
|
||||
Gfx::Bitmap::load_from_file("/res/icons/TextEditor16.png"),
|
||||
Gfx::Bitmap::load_from_file("/res/icons/16x16/app-text-editor.png"),
|
||||
[&](auto&) {
|
||||
add_new_editor(*g_text_inner_splitter);
|
||||
update_actions();
|
||||
|
|
Loading…
Add table
Reference in a new issue