summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Base/res/icons/calculator/eulers.pngbin3070 -> 0 bytes
-rw-r--r--Base/res/icons/calculator/eulers_number.pngbin0 -> 822 bytes
-rw-r--r--Userland/Applications/Calculator/main.cpp2
3 files changed, 1 insertions, 1 deletions
diff --git a/Base/res/icons/calculator/eulers.png b/Base/res/icons/calculator/eulers.png
deleted file mode 100644
index c6fdb1cec4..0000000000
--- a/Base/res/icons/calculator/eulers.png
+++ /dev/null
Binary files 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
--- /dev/null
+++ b/Base/res/icons/calculator/eulers_number.png
Binary files 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<int> 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&) {