Skip to content

Commit

Permalink
Make system the first item in the list
Browse files Browse the repository at this point in the history
  • Loading branch information
belcherj committed Oct 7, 2019
1 parent 105acab commit 351d3a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions desktop/menus/view-menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@ const buildViewMenu = settings => {
{
label: 'T&heme',
submenu: [
{
label: '&System',
id: 'system',
},
{
label: '&Light',
id: 'light',
Expand All @@ -106,10 +110,6 @@ const buildViewMenu = settings => {
label: '&Dark',
id: 'dark',
},
{
label: '&System',
id: 'system',
},
].map(
buildRadioGroup({
action: 'activateTheme',
Expand Down
2 changes: 1 addition & 1 deletion lib/dialogs/settings/panels/display.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ const DisplayPanel = props => {
onChange={actions.activateTheme}
renderer={RadioGroup}
>
<Item title="System" slug="system" />
<Item title="Light" slug="light" />
<Item title="Dark" slug="dark" />
<Item title="System" slug="system" />
</SettingsGroup>
</Fragment>
);
Expand Down

0 comments on commit 351d3a5

Please sign in to comment.