From c7d10affd553dbfd237346fae5de6862ec917e3a Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Tue, 4 Oct 2016 13:04:54 -0700 Subject: [PATCH 1/3] Make seed word confirmation button font smaller To avoid formatting glitches on some machines. --- CHANGELOG.md | 2 ++ ui/app/first-time/create-vault-complete.js | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ddc354e89..a62d272f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Current Master +- Decreased vault confirmation button font size to help some Linux users who could not see it. + ## 2.13.2 2016-10-4 - Fix bug where chosen FIAT exchange rate does no persist when switching networks diff --git a/ui/app/first-time/create-vault-complete.js b/ui/app/first-time/create-vault-complete.js index 0ca0a1b22..2b5413955 100644 --- a/ui/app/first-time/create-vault-complete.js +++ b/ui/app/first-time/create-vault-complete.js @@ -61,6 +61,7 @@ CreateVaultCompleteScreen.prototype.render = function () { onClick: () => this.confirmSeedWords(), style: { margin: '24px', + fontSize: '0.9em', }, }, 'I\'ve copied it somewhere safe'), ]) From f9eba9d7e52d55180d4a86bbc0cd14682a190c5c Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Tue, 4 Oct 2016 13:10:28 -0700 Subject: [PATCH 2/3] Make popup a little taller For some reason the popup was often cutting off the bottom buttons of the UI. We should look at that more carefully later perhaps, but especially since we're considering moving off the popup, I'm just fixing it by making it taller for now. --- app/scripts/lib/notifications.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scripts/lib/notifications.js b/app/scripts/lib/notifications.js index 422f46f6d..cd7535232 100644 --- a/app/scripts/lib/notifications.js +++ b/app/scripts/lib/notifications.js @@ -1,5 +1,5 @@ const extension = require('./extension') -const height = 500 +const height = 520 const width = 360 const notifications = { From 55364b6ee31bdb91d19a5e69dcf3be9ccf49e94a Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Tue, 4 Oct 2016 13:13:58 -0700 Subject: [PATCH 3/3] Bump changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a62d272f3..5b384e342 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## Current Master - Decreased vault confirmation button font size to help some Linux users who could not see it. +- Made popup a little taller because it would sometimes cut off buttons. ## 2.13.2 2016-10-4