buttons
This commit is contained in:
@@ -87,11 +87,11 @@ void Calculator::basicCalculator() {
|
|||||||
s += "3";
|
s += "3";
|
||||||
}
|
}
|
||||||
if(ImGui::Button("0")) {
|
if(ImGui::Button("0")) {
|
||||||
s += "1";
|
s += "0";
|
||||||
}
|
}
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
if(ImGui::Button(".")) {
|
if(ImGui::Button(".")) {
|
||||||
s += "2";
|
s += ".";
|
||||||
}
|
}
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
if(ImGui::Button("")) {
|
if(ImGui::Button("")) {
|
||||||
|
|||||||
Reference in New Issue
Block a user