diff --git a/Base/res/icons/calculator/eulers.png b/Base/res/icons/calculator/eulers.png deleted file mode 100644 index c6fdb1cec4..0000000000 Binary files a/Base/res/icons/calculator/eulers.png and /dev/null differ diff --git a/Base/res/icons/calculator/eulers_number.png b/Base/res/icons/calculator/eulers_number.png new file mode 100644 index 0000000000..fe7de6fc03 Binary files /dev/null and b/Base/res/icons/calculator/eulers_number.png differ diff --git a/Userland/Applications/Calculator/main.cpp b/Userland/Applications/Calculator/main.cpp index 512e0357e9..8fa27be759 100644 --- a/Userland/Applications/Calculator/main.cpp +++ b/Userland/Applications/Calculator/main.cpp @@ -60,7 +60,7 @@ ErrorOr serenity_main(Main::Arguments arguments) constants_menu.add_action(GUI::Action::create("&Pi", TRY(Gfx::Bitmap::try_load_from_file("/res/icons/calculator/pi.png")), [&](auto&) { widget->set_entry(KeypadValue { 31415926535, 10 }); })); - constants_menu.add_action(GUI::Action::create("&Euler's Constant", TRY(Gfx::Bitmap::try_load_from_file("/res/icons/calculator/eulers.png")), [&](auto&) { + constants_menu.add_action(GUI::Action::create("&Euler's Number", TRY(Gfx::Bitmap::try_load_from_file("/res/icons/calculator/eulers_number.png")), [&](auto&) { widget->set_entry(KeypadValue { 27182818284, 10 }); })); constants_menu.add_action(GUI::Action::create("&Phi", TRY(Gfx::Bitmap::try_load_from_file("/res/icons/calculator/phi.png")), [&](auto&) {