Patch Overlays and RSettings to default txt size + cf

This commit is contained in:
2024-02-20 20:56:14 +01:00
parent 33bb37be06
commit 688570b3cd
8 changed files with 29 additions and 21 deletions

View File

@ -105,11 +105,11 @@ void Sample::Draw() const {
UI7::Checkbox("RD7-Debug", rd7_debugging);
UI7::InputText("Search", search__, "Tap Here");
UI7::Label("Text Control:");
if(UI7::Button("text++")) txt_size+=0.01;
if (UI7::Button("text++")) txt_size += 0.01;
UI7::SameLine();
if(UI7::Button("text--")) txt_size -= 0.01;
if (UI7::Button("text--")) txt_size -= 0.01;
UI7::SameLine();
if(UI7::Button("def")) txt_size = 0.5;
if (UI7::Button("def")) txt_size = 0.5;
}
UI7::EndMenu();
}