Skip to content

Commit

Permalink
Merge branch 'development' into comms-rpc-connection-pool
Browse files Browse the repository at this point in the history
* development:
  chore(deps): bump tar from 6.1.0 to 6.1.6 in /integration_tests
  fix: in wallet block certain keys during popup
  Added links to mobile wallets' repos
  • Loading branch information
sdbondi committed Aug 5, 2021
2 parents 8c4b87b + 8454292 commit d4eda65
Show file tree
Hide file tree
Showing 4 changed files with 521 additions and 4,263 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A number of applications have been developed by the Tari community to implement
- Tari Merge Mining Proxy
- Tari Aurora wallets for Android and iOS

Only the first four applications will be discussed in this README.
Only the first four applications will be discussed in this README (see [wallet-android](https://github.com/tari-project/wallet-android) and [wallet-ios](https://github.com/tari-project/wallet-ios) for mobile wallets' repos).

## Installing using binaries

Expand Down
12 changes: 8 additions & 4 deletions applications/tari_console_wallet/src/ui/components/send_tab.rs
Original file line number Diff line number Diff line change
Expand Up @@ -626,13 +626,17 @@ impl<B: Backend> Component<B> for SendTab {
}

fn on_key(&mut self, app_state: &mut AppState, c: char) {
if self.error_message.is_some() && '\n' == c {
self.error_message = None;
if self.error_message.is_some() {
if '\n' == c {
self.error_message = None;
}
return;
}

if self.success_message.is_some() && '\n' == c {
self.success_message = None;
if self.success_message.is_some() {
if '\n' == c {
self.success_message = None;
}
return;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,9 @@ impl<B: Backend> Component<B> for TransactionsTab {
}

fn on_up(&mut self, app_state: &mut AppState) {
if self.confirmation_dialog {
return;
}
match self.selected_tx_list {
SelectedTransactionList::None => {},
SelectedTransactionList::PendingTxs => {
Expand All @@ -575,6 +578,9 @@ impl<B: Backend> Component<B> for TransactionsTab {
}

fn on_down(&mut self, app_state: &mut AppState) {
if self.confirmation_dialog {
return;
}
match self.selected_tx_list {
SelectedTransactionList::None => {},
SelectedTransactionList::PendingTxs => {
Expand Down Expand Up @@ -602,6 +608,7 @@ impl<B: Backend> Component<B> for TransactionsTab {
self.pending_list_state.select(None);
self.completed_list_state.select(None);
self.detailed_transaction = None;
self.confirmation_dialog = false;
}
}

Expand Down
Loading

0 comments on commit d4eda65

Please sign in to comment.