summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md1
-rw-r--r--app/components/AdvancedSettingsStyles.js1
-rw-r--r--app/components/SelectLocation.js2
-rw-r--r--app/components/SelectLocationStyles.js3
-rw-r--r--app/components/SettingsStyles.js1
5 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index abd478364a..10714c0d76 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -70,6 +70,7 @@ Line wrap the file at 100 chars. Th
- Remove the `shutdown` command from the CLI.
### Fixed
+- Fix scroll flickering.
- Fix bug in account input field that advanced the cursor to the end regardless its prior position.
- Redact all 16 digit numbers from problem report logs. Extra safety against accidentally sending
account numbers.
diff --git a/app/components/AdvancedSettingsStyles.js b/app/components/AdvancedSettingsStyles.js
index 95ec71fb41..0e4d840769 100644
--- a/app/components/AdvancedSettingsStyles.js
+++ b/app/components/AdvancedSettingsStyles.js
@@ -44,6 +44,7 @@ export default {
flexGrow: 1,
flexShrink: 0,
flexBasis: 'auto',
+ overflow: 'visible',
},
advanced_settings__cell: {
backgroundColor: '#44AD4D',
diff --git a/app/components/SelectLocation.js b/app/components/SelectLocation.js
index d706e7fcc2..5864ed55a3 100644
--- a/app/components/SelectLocation.js
+++ b/app/components/SelectLocation.js
@@ -76,7 +76,7 @@ export default class SelectLocation extends React.Component<SelectLocationProps,
</View>
<CustomScrollbars autoHide={true} ref={(ref) => (this._scrollView = ref)}>
- <View>
+ <View style={styles.content}>
<Text style={styles.subtitle}>
While connected, your real location is masked with a private and secure location
in the selected region
diff --git a/app/components/SelectLocationStyles.js b/app/components/SelectLocationStyles.js
index a0aec306d4..c1fca00d07 100644
--- a/app/components/SelectLocationStyles.js
+++ b/app/components/SelectLocationStyles.js
@@ -27,6 +27,9 @@ export default {
flex: 0,
opacity: 0.6,
},
+ content: {
+ overflow: 'visible',
+ },
relay_status: {
width: 16,
height: 16,
diff --git a/app/components/SettingsStyles.js b/app/components/SettingsStyles.js
index 82616f7e4a..6063a5a567 100644
--- a/app/components/SettingsStyles.js
+++ b/app/components/SettingsStyles.js
@@ -24,6 +24,7 @@ export default Object.assign(
flexDirection: 'column',
flex: 1,
justifyContent: 'space-between',
+ overflow: 'visible',
},
settings__scrollview: {
flexGrow: 1,