summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2019-09-11 13:17:30 +0200
committerAndrej Mihajlov <and@mullvad.net>2019-09-11 15:07:42 +0200
commitef20b724201e5c374e6080298974bc8e97818cf2 (patch)
treeaf77c7f8228d76a0168b58a179420dadb438c0f2 /gui/src
parent41aaee13e711060d3988131d399194a34a8f1186 (diff)
downloadmullvadvpn-ef20b724201e5c374e6080298974bc8e97818cf2.tar.xz
mullvadvpn-ef20b724201e5c374e6080298974bc8e97818cf2.zip
Show navigation bar title a little earlier
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/renderer/components/NavigationBar.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/src/renderer/components/NavigationBar.tsx b/gui/src/renderer/components/NavigationBar.tsx
index f6dd419358..dd36c08850 100644
--- a/gui/src/renderer/components/NavigationBar.tsx
+++ b/gui/src/renderer/components/NavigationBar.tsx
@@ -189,7 +189,7 @@ export class NavigationContainer extends Component {
const showsBarSeparator = event.scrollTop > 11 && !hasSticky;
// that's when SettingsHeader.HeaderTitle goes behind the navigation bar
- const showsBarTitle = event.scrollTop > 39;
+ const showsBarTitle = event.scrollTop > 20;
if (
this.state.showsBarSeparator !== showsBarSeparator ||