Skip to content

Commit

Permalink
[DDW-781] Blank Screen Fix - Default Selection. (#1488)
Browse files Browse the repository at this point in the history
* [DDW-781] Blank Screen Fix - Default Selection.

* [DDW-711] Replaces button No by Cancel

* [DDW-781] Fixes buttons focus

* DDW-781 CHANGELOG
  • Loading branch information
thedanheller committed Jul 30, 2019
1 parent 15fcd5b commit 555835b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Changelog

- Implemented guided manual updates ([PR 1410](https://github.com/input-output-hk/daedalus/pull/1410), [PR 1423](https://github.com/input-output-hk/daedalus/pull/1423))
- Application menu improvements:
- Implemented "Help" application menu item with "Known Issues", "Blank Screen Fix", "Feature Request", "Support Request", "Download Logs", "Block Consolidation Status" and "Daedalus Diagnostics" options ([PR 1382](https://github.com/input-output-hk/daedalus/pull/1382), [PR 1459](https://github.com/input-output-hk/daedalus/pull/1459), [PR 1487](https://github.com/input-output-hk/daedalus/issues/1487))
- Implemented "Help" application menu item with "Known Issues", "Blank Screen Fix", "Feature Request", "Support Request", "Download Logs", "Block Consolidation Status" and "Daedalus Diagnostics" options ([PR 1382](https://github.com/input-output-hk/daedalus/pull/1382), [PR 1459](https://github.com/input-output-hk/daedalus/pull/1459), [PR 1487](https://github.com/input-output-hk/daedalus/issues/1487), [PR 1488](https://github.com/input-output-hk/daedalus/pull/1488))
- Improved the "Ada redemption" menu item UX by disabling the option while Daedalus is not fully synced ([PR 1458](https://github.com/input-output-hk/daedalus/pull/1458))
- Application dialogs improvements:
- Implemented new "About Us" dialog design ([PR 1369](https://github.com/input-output-hk/daedalus/pull/1369), [PR 1450](https://github.com/input-output-hk/daedalus/pull/1450))
Expand Down
3 changes: 2 additions & 1 deletion source/main/utils/buildAppMenus.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export const buildAppMenus = async (
installerVersion,
os,
buildNumber,
isWindows,
isInSafeMode,
} = environment;
const translations = require(`../locales/${locale}`);
Expand Down Expand Up @@ -83,7 +84,7 @@ export const buildAppMenus = async (
message: isInSafeMode
? translation('helpSupport.gpuSafeModeDialogMessage')
: translation('helpSupport.nonGpuSafeModeDialogMessage'),
defaultId: 1,
defaultId: isWindows ? 0 : 1,
cancelId: 1,
noLink: true,
};
Expand Down

0 comments on commit 555835b

Please sign in to comment.