This commit is contained in:
2025-05-12 16:39:34 -05:00
parent 08bccb1e70
commit 3196f7b81a

View File

@@ -87,11 +87,11 @@ void Calculator::basicCalculator() {
s += "3";
}
if(ImGui::Button("0")) {
s += "1";
s += "0";
}
ImGui::SameLine();
if(ImGui::Button(".")) {
s += "2";
s += ".";
}
ImGui::SameLine();
if(ImGui::Button("󰭜")) {