fix extra movement to the right
Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
This commit is contained in:
parent
b922aa75f7
commit
80fd07bcfe
@ -160,7 +160,10 @@ impl Component for Validator {
|
|||||||
|
|
||||||
fn update(&mut self, action: Action) -> Result<Option<Action>> {
|
fn update(&mut self, action: Action) -> Result<Option<Action>> {
|
||||||
match action {
|
match action {
|
||||||
Action::SetActiveScreen(Mode::Validator) => self.is_active = true,
|
Action::SetActiveScreen(Mode::Validator) => {
|
||||||
|
self.is_active = true;
|
||||||
|
self.current_tab = CurrentTab::StashInfo;
|
||||||
|
},
|
||||||
_ => {},
|
_ => {},
|
||||||
}
|
}
|
||||||
for component in self.components.iter_mut() {
|
for component in self.components.iter_mut() {
|
||||||
|
@ -191,7 +191,10 @@ impl Component for Wallet {
|
|||||||
|
|
||||||
fn update(&mut self, action: Action) -> Result<Option<Action>> {
|
fn update(&mut self, action: Action) -> Result<Option<Action>> {
|
||||||
match action {
|
match action {
|
||||||
Action::SetActiveScreen(Mode::Wallet) => self.is_active = true,
|
Action::SetActiveScreen(Mode::Wallet) => {
|
||||||
|
self.is_active = true;
|
||||||
|
self.current_tab = CurrentTab::Accounts;
|
||||||
|
},
|
||||||
Action::UpdateAccountName(_) | Action::NewAccount(_) =>
|
Action::UpdateAccountName(_) | Action::NewAccount(_) =>
|
||||||
self.current_tab = CurrentTab::Accounts,
|
self.current_tab = CurrentTab::Accounts,
|
||||||
Action::UpdateAddressBookRecord(_) | Action::NewAddressBookRecord(_, _) | Action::ClosePopup =>
|
Action::UpdateAddressBookRecord(_) | Action::NewAddressBookRecord(_, _) | Action::ClosePopup =>
|
||||||
|
Loading…
Reference in New Issue
Block a user