Custom window title #8

Merged
ardocrat merged 29 commits from custom_window_title into master 2024-07-03 13:44:26 +03:00
3 changed files with 3 additions and 0 deletions
Showing only changes of commit b91e90237a - Show all commits

View file

@ -431,6 +431,7 @@ impl View {
.ui(ui); .ui(ui);
// Show keyboard on click. // Show keyboard on click.
if text_edit_resp.clicked() { if text_edit_resp.clicked() {
text_edit_resp.request_focus();
cb.show_keyboard(); cb.show_keyboard();
} }
// Setup focus on input field. // Setup focus on input field.

View file

@ -665,6 +665,7 @@ impl WalletMessages {
.response; .response;
// Show soft keyboard on click. // Show soft keyboard on click.
if response_empty && resp.clicked() { if response_empty && resp.clicked() {
resp.request_focus();
cb.show_keyboard(); cb.show_keyboard();
} }
if response_empty && resp.has_focus() { if response_empty && resp.has_focus() {

View file

@ -855,6 +855,7 @@ impl WalletTransactions {
.show(ui).response; .show(ui).response;
// Show soft keyboard on click. // Show soft keyboard on click.
if self.tx_info_finalize && resp.clicked() { if self.tx_info_finalize && resp.clicked() {
resp.request_focus();
cb.show_keyboard(); cb.show_keyboard();
} }
if self.tx_info_finalize && resp.has_focus() { if self.tx_info_finalize && resp.has_focus() {