diff options
| author | David Göransson <david.goransson@mullvad.net> | 2024-10-21 12:52:16 +0200 |
|---|---|---|
| committer | David Göransson <david.goransson@mullvad.net> | 2024-10-21 12:56:30 +0200 |
| commit | fa120ef14ca1c85105f92c1bd6bca59845a512c6 (patch) | |
| tree | c2162f73dddd4c4f124a7aa19638eb83d5f9f526 /android/app/src | |
| parent | 9925af111725f0226daba2614c1f58c39f9afac9 (diff) | |
| download | mullvadvpn-fa120ef14ca1c85105f92c1bd6bca59845a512c6.tar.xz mullvadvpn-fa120ef14ca1c85105f92c1bd6bca59845a512c6.zip | |
Clarify comment
Diffstat (limited to 'android/app/src')
| -rw-r--r-- | android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/component/connectioninfo/FeatureIndicatorsPanel.kt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/component/connectioninfo/FeatureIndicatorsPanel.kt b/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/component/connectioninfo/FeatureIndicatorsPanel.kt index 8815149f27..8b04017f0a 100644 --- a/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/component/connectioninfo/FeatureIndicatorsPanel.kt +++ b/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/component/connectioninfo/FeatureIndicatorsPanel.kt @@ -70,7 +70,9 @@ fun FeatureIndicators( MullvadFeatureChip(text = features[index].text()) } - // Spacing are added to compensate for when the + // Spacing are added to compensate for when there are no feature indicators, since each feature + // indicator has built-in padding. Padding looks the same towards Switch Location button with or + // without feature indicators. if (features.isEmpty() && !expanded) { Spacer(Modifier.height(Dimens.smallSpacer)) } |
