mirror of
https://github.com/veeso/termscp.git
synced 2026-06-08 14:18:41 +02:00
Merge branch '0.4.1' into issue-13-could-not-start-activity-manager-no-such-file-or-directory
This commit is contained in:
@@ -19,6 +19,9 @@
|
|||||||
|
|
||||||
Released on FIXME:
|
Released on FIXME:
|
||||||
|
|
||||||
|
- Bugfix:
|
||||||
|
- [Issue 10](https://github.com/veeso/termscp/issues/10): Fixed port not being loaded from bookmarks into gui
|
||||||
|
|
||||||
## 0.4.0
|
## 0.4.0
|
||||||
|
|
||||||
Released on 27/03/2021
|
Released on 27/03/2021
|
||||||
|
|||||||
@@ -251,7 +251,7 @@ impl AuthActivity {
|
|||||||
self.view.update(super::COMPONENT_INPUT_ADDR, props);
|
self.view.update(super::COMPONENT_INPUT_ADDR, props);
|
||||||
}
|
}
|
||||||
if let Some(mut props) = self.view.get_props(super::COMPONENT_INPUT_PORT) {
|
if let Some(mut props) = self.view.get_props(super::COMPONENT_INPUT_PORT) {
|
||||||
let props = props.with_value(PropValue::Unsigned(port as usize)).build();
|
let props = props.with_value(PropValue::Str(port.to_string())).build();
|
||||||
self.view.update(super::COMPONENT_INPUT_PORT, props);
|
self.view.update(super::COMPONENT_INPUT_PORT, props);
|
||||||
}
|
}
|
||||||
if let Some(mut props) = self.view.get_props(super::COMPONENT_RADIO_PROTOCOL) {
|
if let Some(mut props) = self.view.get_props(super::COMPONENT_RADIO_PROTOCOL) {
|
||||||
|
|||||||
Reference in New Issue
Block a user