mirror of
https://github.com/rock88/moonlight-nx
synced 2024-11-23 12:03:10 +00:00
Add zero button
This commit is contained in:
parent
b19879745b
commit
cd1d485818
1 changed files with 7 additions and 1 deletions
|
@ -35,10 +35,16 @@ AddHostWindow::AddHostWindow(Widget *parent): ContentWindow(parent, "Add Host")
|
||||||
text->set_value(text->value() + dot->caption());
|
text->set_value(text->value() + dot->caption());
|
||||||
});
|
});
|
||||||
|
|
||||||
|
auto zero = other_buttons_container->add<Button>("0");
|
||||||
|
zero->set_fixed_size(Size(100, 100));
|
||||||
|
zero->set_callback([text, zero] {
|
||||||
|
text->set_value(text->value() + zero->caption());
|
||||||
|
});
|
||||||
|
|
||||||
auto backspace = other_buttons_container->add<Button>("");
|
auto backspace = other_buttons_container->add<Button>("");
|
||||||
backspace->set_icon(FA_BACKSPACE);
|
backspace->set_icon(FA_BACKSPACE);
|
||||||
backspace->set_icon_extra_scale(2);
|
backspace->set_icon_extra_scale(2);
|
||||||
backspace->set_fixed_size(Size(210, 100));
|
backspace->set_fixed_size(Size(100, 100));
|
||||||
backspace->set_callback([text] {
|
backspace->set_callback([text] {
|
||||||
if (text->value().size() > 0) {
|
if (text->value().size() > 0) {
|
||||||
auto value = text->value();
|
auto value = text->value();
|
||||||
|
|
Loading…
Reference in a new issue